Added a bit more flushing.

This commit is contained in:
Jeremy Fincher 2004-08-11 04:57:55 +00:00
parent 6bd8d43c28
commit 92a04920cb
1 changed files with 4 additions and 2 deletions

View File

@ -76,9 +76,9 @@ class Later(callbacks.Privmsg):
self._openNotes()
def die(self):
self._closeNotes()
self._flushNotes()
def _closeNotes(self):
def _flushNotes(self):
fd = utils.transactionalFile(self.filename)
writer = csv.writer(fd)
for (nick, notes) in self.notes.iteritems():
@ -118,6 +118,7 @@ class Later(callbacks.Privmsg):
notes.append[(at, whence, text)]
except KeyError:
self.notes[nick] = [(at, whence, text)]
self._flushNotes()
def tell(self, irc, msg, args):
"""<nick> <text>
@ -139,6 +140,7 @@ class Later(callbacks.Privmsg):
for (when, whence, note) in notes:
s = 'Sent %s: <%s> %s' % (self._timestamp(when), whence, note)
irc.reply(s, private=private)
self._flushNotes()
except KeyError:
pass