From cbbc2818ee04246207459c77f36171bf682c21ce Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 23 Oct 2003 13:13:40 +0000 Subject: [PATCH] Changed an irc.queueMsg to irc.reply --- plugins/Notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Notes.py b/plugins/Notes.py index 689afa56c..8d2df4b88 100644 --- a/plugins/Notes.py +++ b/plugins/Notes.py @@ -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):