Browse Source

Fixed indexing a function rather than calling it in WalletStorage.put

283
Wallacoloo 11 years ago
parent
commit
cd24eb4feb
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -132,7 +132,7 @@ class WalletStorage:
if value is not None:
self.data[key] = value
else:
self.data.pop[key]
self.data.pop(key)
if save:
self.write()

Loading…
Cancel
Save