Mercurial > p > roundup > code
changeset 1724:bc4f0aec594e
oops, we really do need a database
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 21 Jul 2003 22:56:54 +0000 |
| parents | ed2c4f5a27da |
| children | 714ca98e4e65 |
| files | roundup/cgi/client.py |
| diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/cgi/client.py Tue Jul 15 22:47:09 2003 +0000 +++ b/roundup/cgi/client.py Mon Jul 21 22:56:54 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.125 2003-07-03 23:43:47 richard Exp $ +# $Id: client.py,v 1.126 2003-07-21 22:56:54 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -317,6 +317,9 @@ def determine_user(self): ''' Determine who the user is ''' + # open the database as admin + self.opendb('admin') + # clean age sessions self.clean_sessions()
