Changeset 1904
- Timestamp:
- 02/29/08 11:30:36
- Files:
-
- trunk/cherrypy/lib/sessions.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/sessions.py
r1886 r1904 286 286 automatically when using sessions.init (as the built-in Tool does). 287 287 """ 288 if 'storage_path' in kwargs: 289 kwargs['storage_path'] = os.path.abspath(kwargs['storage_path']) 290 288 291 for k, v in kwargs.iteritems(): 289 292 setattr(cls, k, v) … … 298 301 "only running one process, then you may need to " 299 302 "manually delete the lockfiles found at %r." 300 % (len(lockfiles), plural, 301 os.path.abspath(cls.storage_path))) 303 % (len(lockfiles), plural, cls.storage_path)) 302 304 setup = classmethod(setup) 303 305

