This website works better with JavaScript.
Home
Help
Sign In
ben
/
earwigbot
mirror of
https://github.com/earwig/earwigbot
Watch
1
Star
1
Fork
0
Code
Releases
4
Activity
Browse Source
Minor logic fix
tags/v0.1^2
Ben Kurtovic
12 years ago
parent
b3c0869db2
commit
97c1710acf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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:
el
if data.args:
self.do_command_help(data)
else:
self.do_main_help(data)
Write
Preview
Loading…
Cancel
Save