From cd24eb4feb46c878771dac993d77bfb7efb015c3 Mon Sep 17 00:00:00 2001 From: Wallacoloo Date: Mon, 4 Nov 2013 19:36:09 -0800 Subject: [PATCH] Fixed indexing a function rather than calling it in WalletStorage.put --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 2088c019..afaa55f3 100644 --- a/lib/wallet.py +++ b/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()