trename help -> commands - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit e93ff187768853e2ab7734286a9f69019b210dd4 DIR parent 71ec50e634fee6ffc0ef567bd2e64fb86f479a16 HTML Author: ThomasV <thomasv@gitorious> Date: Thu, 6 Aug 2015 15:52:38 +0200 rename help -> commands Diffstat: M lib/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- DIR diff --git a/lib/commands.py b/lib/commands.py t@@ -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):