From e828c3350eed823e36cb49d1bb139c8356fa0d03 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 11 Nov 2003 17:09:45 +0000 Subject: [PATCH] Need a return after the dispatch to _oldnotes. --- plugins/Note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Note.py b/plugins/Note.py index 728698625..3c7e72322 100644 --- a/plugins/Note.py +++ b/plugins/Note.py @@ -195,7 +195,7 @@ class Note(callbacks.Privmsg): if '--old' in args: while '--old' in args: args.remove('--old') - self._oldnotes(irc, msg, args) + return self._oldnotes(irc, msg, args) try: id = ircdb.users.getUserId(msg.prefix) except KeyError: