From 57504807140fd47d7aa83a1e712ef05742e66b39 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 28 Oct 2003 05:03:56 +0000 Subject: [PATCH] Forgot to set the prioirity appropriately. --- src/Misc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Misc.py b/src/Misc.py index c2e6570a8..4fda7aa0b 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -74,6 +74,7 @@ def reload(x=None): replyWhenNotCommand = x class Misc(callbacks.Privmsg): + priority = sys.maxint def invalidCommand(self, irc, msg, tokens): if conf.replyWhenNotCommand: irc.error(msg, '%r is not a valid command.' % tokens[0])