Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

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

Changeset 302

Show
Ignore:
Timestamp:
09/20/06 03:23:36
Author:
fumanchu
Message:

Tweaks to errors.py.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/errors.py

    r301 r302  
    1  
    2 __all__ = ['DejavuError', 'AssociationError', 'UnrecallableError', 
    3            'StorageWarning'] 
    41 
    52class DejavuError(Exception): 
     
    107     
    118    def __str__(self): 
    12         return u'\n'.join([unicode(eachArg) for eachArg in self.args]) 
     9        return u'\n'.join([unicode(arg) for arg in self.args]) 
    1310 
    1411class AssociationError(DejavuError):