Changeset 1801
- Timestamp:
- 10/28/07 13:50:44
- Files:
-
- trunk/cherrypy/lib/sessions.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/sessions.py
r1773 r1801 371 371 """ 372 372 373 def __init__(self): 373 def __init__(self, id=None, **kwargs): 374 Session.__init__(self, id, **kwargs) 374 375 self.db = self.get_db() 375 376 self.cursor = self.db.cursor()

