From 3b0276e6887674b060459f0bf59e4c0cd0260140 Mon Sep 17 00:00:00 2001 From: Daniel DiPaolo Date: Wed, 29 Oct 2003 17:26:05 +0000 Subject: [PATCH] Fixed a dumb dumb bug where I forgot to include the "msg" arg for irc.error --- plugins/Todo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Todo.py b/plugins/Todo.py index 712087486..54aa335ff 100644 --- a/plugins/Todo.py +++ b/plugins/Todo.py @@ -113,7 +113,8 @@ class Todo(callbacks.Privmsg): try: userid = ircdb.users.getUserId(arg) except KeyError: - irc.error('%r is not a valid task id or username' % arg) + irc.error(msg, + '%r is not a valid task id or username' % arg) return # Everything needs a cursor, might as well plop it outside if not userid and not taskid: