restore 'electrum help command' usage

This commit is contained in:
rofl0r 2013-09-18 20:22:30 +02:00
parent 7d1c6c7980
commit fd1458aa23
1 changed files with 2 additions and 5 deletions

View File

@ -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: