Changed an irc.queueMsg to irc.reply

This commit is contained in:
James Vega 2003-10-23 13:13:40 +00:00
parent d608f82875
commit cbbc2818ee
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class Notes(callbacks.Privmsg):
irc.reply(msg, newnote)
else:
### FIXME: IrcObjectProxy should offer a private keyword arg.
irc.queueMsg(ircmsgs.privmsg(msg.nick, newnote))
irc.reply(msg.nick, newnote)
self.setAsRead(noteid)
def _formatNoteData(self, msg, id, fromId, public):