From 0f9ea57a857dbcce85f7ca819e09342eec2202d4 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 14 Apr 2011 20:40:58 -0400 Subject: [PATCH] add in a return that I forgot --- irc/commands/help.py | 1 + 1 file changed, 1 insertion(+) diff --git a/irc/commands/help.py b/irc/commands/help.py index 791cfaa..0365565 100644 --- a/irc/commands/help.py +++ b/irc/commands/help.py @@ -24,6 +24,7 @@ def do_command_help(): exec "from irc.commands import %s as this_command" % command except ImportError: actions.say(data.chan, "\x02%s\x0F: command \x0303%s\x0301 not found!" % (data.nick, command)) + return info = this_command.__doc__