Merge pull request #361 from Wallacoloo/patch-1

Fixed indexing a function rather than calling it in WalletStorage.put
This commit is contained in:
ThomasV 2013-11-05 00:49:39 -08:00
commit ff964df8ea
1 changed files with 1 additions and 1 deletions

View File

@ -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()