Browse Source

minor fix

283
ThomasV 10 years ago
parent
commit
0c8c21f64d
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -100,7 +100,7 @@ class WalletStorage(object):
except Exception:
raise IOError("Cannot read wallet file.")
self.data = {}
for k, v in d.items():
for key, value in d.items():
try:
json.dumps(key)
json.dumps(value)

Loading…
Cancel
Save