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

This commit is contained in:
Wallacoloo 2013-11-04 19:36:09 -08:00
parent 9c016a94e2
commit cd24eb4feb
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()