mirror of
https://github.com/progval/Limnoria.git
synced 2025-05-03 08:51:10 -05:00
Fixed moduleof command.
This commit is contained in:
parent
d53a1842df
commit
d4ee42df5e
@ -183,7 +183,7 @@ class MiscCommands(callbacks.Privmsg):
|
|||||||
"""
|
"""
|
||||||
command = privmsgs.getArgs(args)
|
command = privmsgs.getArgs(args)
|
||||||
Class = irc.findCallback(command)
|
Class = irc.findCallback(command)
|
||||||
if method is not None:
|
if Class is not None:
|
||||||
irc.reply(msg, Class.__name__)
|
irc.reply(msg, Class.__name__)
|
||||||
else:
|
else:
|
||||||
irc.error(msg, 'There is no such command %s' % command)
|
irc.error(msg, 'There is no such command %s' % command)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user