From 97c1710acfde08dd8ec3ca6055f21c693d1f7b62 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 28 Apr 2012 17:20:29 -0400 Subject: [PATCH] Minor logic fix --- earwigbot/commands/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/help.py b/earwigbot/commands/help.py index e1e6374..79ffcab 100644 --- a/earwigbot/commands/help.py +++ b/earwigbot/commands/help.py @@ -40,7 +40,7 @@ class Command(BaseCommand): def process(self, data): if not data.command: self.do_hello(data) - if data.args: + elif data.args: self.do_command_help(data) else: self.do_main_help(data)