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)