From e93ff187768853e2ab7734286a9f69019b210dd4 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 6 Aug 2015 15:52:38 +0200 Subject: [PATCH] rename help -> commands --- lib/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/commands.py b/lib/commands.py index 12e9a0d5..7453255d 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -94,9 +94,9 @@ class Commands: return result @command('') - def help(self): - """Print help""" - return 'Commands: ' + ', '.join(sorted(known_commands.keys())) + def commands(self): + """List of commands""" + return ' '.join(sorted(known_commands.keys())) @command('') def create(self):