Code

missed a db close
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Sep 2002 06:33:06 +0000 (06:33 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Sep 2002 06:33:06 +0000 (06:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1191 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/cgi/client.py

index bb385c9129cefc3f1aadff758e6c609bbbb3cf13..8825350ae7b6e2d2e63c9f7e1582f1df0d5ea7ae 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: client.py,v 1.38 2002-09-18 00:01:28 richard Exp $
+# $Id: client.py,v 1.39 2002-09-18 06:33:06 richard Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -492,6 +492,8 @@ class Client:
         '''
         # open the db if the user has changed
         if not hasattr(self, 'db') or user != self.db.journaltag:
+            if hasattr(self, 'db'):
+                self.db.close()
             self.db = self.instance.open(user)
 
     #