Browse Source

be more permissive with catching exceptions here as many varities possible.

283
Amir Taaki 13 years ago
parent
commit
f2fb235643
  1. 2
      electrum

2
electrum

@ -357,7 +357,7 @@ if __name__ == '__main__':
d = ast.literal_eval( data )
seed = d['seed']
imported_keys = d.get('imported_keys',{})
except IOError:
except:
sys.exit("Error: Error with seed file")
mpk = wallet.master_public_key

Loading…
Cancel
Save