make later plugin send waiting messages on user join also, not just on privmsg.

This commit is contained in:
Daniel Folkinshteyn 2010-04-09 13:34:39 -04:00 committed by Valentin Lorentz
parent fcaa7863fa
commit 7ec1ca2070
1 changed files with 2 additions and 0 deletions

View File

@ -202,6 +202,8 @@ class Later(callbacks.Plugin):
def _formatNote(self, when, whence, note):
return _('Sent %s: <%s> %s') % (self._timestamp(when), whence, note)
doJoin = doPrivmsg
Later = internationalizeDocstring(Later)