No need for backups on these ChannelUserDBs.

This commit is contained in:
Jeremy Fincher 2004-12-08 12:23:18 +00:00
parent e4f15ae1b3
commit 6c8071da48
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ class ChannelUserDB(ChannelUserDictionary):
log.debug('Exception: %s', utils.exnToString(e))
def flush(self):
fd = utils.transactionalFile(self.filename)
fd = utils.transactionalFile(self.filename, makeBackupIfSmaller=False)
writer = csv.writer(fd)
items = self.items()
if not items: