Browse Source

Minor logic fix

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
97c1710acf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/commands/help.py

+ 1
- 1
earwigbot/commands/help.py View File

@@ -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)


Loading…
Cancel
Save