From fd1458aa2388d336c9483e5722b6b0e035d1cc1a Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 18 Sep 2013 20:22:30 +0200 Subject: [PATCH] restore 'electrum help command' usage --- electrum | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/electrum b/electrum index cca0cff2..0a6fc50f 100755 --- a/electrum +++ b/electrum @@ -96,12 +96,9 @@ def print_help(parser): def print_help_cb(self, opt, value, parser): print_help(parser) -def run_command(cmd): +def run_command(cmd, password = None, args = []): cmd_runner = Commands(wallet, network) func = eval('cmd_runner.' + cmd) - if cmd == 'help': - password = None - args = [] cmd_runner.password = password try: result = func(*args[1:]) @@ -381,7 +378,7 @@ if __name__ == '__main__': wallet.update_password(seed, password, new_password) else: - run_command(cmd) + run_command(cmd, password, args) if cmd not in offline_commands and not options.offline: