electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit e93ff187768853e2ab7734286a9f69019b210dd4
parent 71ec50e634fee6ffc0ef567bd2e64fb86f479a16
Author: ThomasV <thomasv@gitorious>
Date:   Thu,  6 Aug 2015 15:52:38 +0200

rename help -> commands

Diffstat:
Mlib/commands.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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):