From: rofl0r Date: Wed, 18 Sep 2013 18:22:30 +0000 (+0200) Subject: restore 'electrum help command' usage X-Git-Url: https://git.novaco.in/?p=electrum-nvc.git;a=commitdiff_plain;h=fd1458aa2388d336c9483e5722b6b0e035d1cc1a restore 'electrum help command' usage --- diff --git a/electrum b/electrum index cca0cff..0a6fc50 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: