From 5c0ae0ecbf2e4da2f69961c7a19fea32c878800e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 18 Jun 2003 06:05:33 +0000 Subject: [PATCH] Changed moduleof to use the canonicalName of the command. --- src/MiscCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MiscCommands.py b/src/MiscCommands.py index 7aa5bfd62..19c653a9a 100755 --- a/src/MiscCommands.py +++ b/src/MiscCommands.py @@ -189,7 +189,7 @@ class MiscCommands(callbacks.Privmsg): Returns the module is in. """ - command = privmsgs.getArgs(args) + command = callbacks.canonicalName(privmsgs.getArgs(args)) Class = irc.findCallback(command) if Class is not None: irc.reply(msg, Class.name())