Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

I think I've seen this ORM somewhere before...

Changeset 409

Show
Ignore:
Timestamp:
02/08/07 07:49:09
Author:
fumanchu
Message:

Fix for #88 (NameError? in sqlite join).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.5/storage/storesqlite.py

    r408 r409  
    846846                break 
    847847        if ua is None: 
    848             raise AssociationError("No association found between %s and %s.
    849                                    % (name1, name2)) 
     848            raise errors.AssociationError("No association found between
     849                                          "%s and %s." % (name1, name2)) 
    850850         
    851851        near = '%s.%s' % (nearTable.alias or nearTable.table.qname, 
  • trunk/storage/storesqlite.py

    r408 r409  
    846846                break 
    847847        if ua is None: 
    848             raise AssociationError("No association found between %s and %s.
    849                                    % (name1, name2)) 
     848            raise errors.AssociationError("No association found between
     849                                          "%s and %s." % (name1, name2)) 
    850850         
    851851        near = '%s.%s' % (nearTable.alias or nearTable.table.qname,