Mercurial > p > roundup > code
diff roundup/backends/back_gadfly.py @ 1131:92e92ae58494
add close() methods where they are missing!
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 12 Sep 2002 07:23:23 +0000 |
| parents | 22517f9e3b1e |
| children | c7119e74fcf8 |
line wrap: on
line diff
--- a/roundup/backends/back_gadfly.py Thu Sep 12 07:00:41 2002 +0000 +++ b/roundup/backends/back_gadfly.py Thu Sep 12 07:23:23 2002 +0000 @@ -1,4 +1,4 @@ -# $Id: back_gadfly.py,v 1.17 2002-09-12 05:51:42 richard Exp $ +# $Id: back_gadfly.py,v 1.18 2002-09-12 07:23:23 richard Exp $ __doc__ = ''' About Gadfly ============ @@ -790,6 +790,11 @@ # return the classname, nodeid so we reindex this content return (classname, nodeid) + def close(self): + ''' Close off the connection. + ''' + self.conn.close() + # # The base Class class #
