Turned off superreload command.

This commit is contained in:
Jeremy Fincher 2003-04-29 13:00:04 +00:00
parent 3c33583454
commit 71bd193c16

View File

@ -258,6 +258,7 @@ class OwnerCommands(CapabilityCheckingPrivmsg):
irc.addCallback(callback) irc.addCallback(callback)
irc.reply(msg, conf.replySuccess) irc.reply(msg, conf.replySuccess)
'''
def superreload(self, irc, msg, args): def superreload(self, irc, msg, args):
"""<module name> """<module name>
@ -267,6 +268,7 @@ class OwnerCommands(CapabilityCheckingPrivmsg):
name = getArgs(args) name = getArgs(args)
world.superReload(__import__(name)) world.superReload(__import__(name))
irc.reply(msg, conf.replySuccess) irc.reply(msg, conf.replySuccess)
'''
def reload(self, irc, msg, args): def reload(self, irc, msg, args):
"""<callback name> """<callback name>