Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

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

Changeset 70

Show
Ignore:
Timestamp:
04/06/05 21:22:40
Author:
fumanchu
Message:

Buglet in Sandbox.flush_all

Files:

Legend:

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

    r69 r70  
    879879    def flush_all(self): 
    880880        """flush_all(). Repress all units.""" 
    881         for cls in self._caches.iterkeys(): 
     881        for cls in self._caches.keys(): 
    882882            self.flush(cls) 
    883883