Made the db commit before closing in ChannelDBHandler.

This commit is contained in:
Jeremy Fincher 2003-08-13 05:53:34 +00:00
parent 622f96c8d4
commit e30aa883cf

View File

@ -44,5 +44,6 @@ class ChannelDBHandler(object):
def die(self):
for db in self.dbCache.itervalues():
db.commit()
db.close()
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: