Browse Source

rename help -> commands

283
ThomasV 10 years ago
parent
commit
e93ff18776
  1. 6
      lib/commands.py

6
lib/commands.py

@ -94,9 +94,9 @@ class Commands:
return result return result
@command('') @command('')
def help(self): def commands(self):
"""Print help""" """List of commands"""
return 'Commands: ' + ', '.join(sorted(known_commands.keys())) return ' '.join(sorted(known_commands.keys()))
@command('') @command('')
def create(self): def create(self):

Loading…
Cancel
Save