commit 0c8c21f64d513a7c5be8f27e8a822b5b54b3472c parent 65d0560475242e600ebd14cca0474ddc98e49485 Author: ThomasV <thomasv@gitorious> Date: Fri, 5 Sep 2014 12:08:09 +0200 minor fix Diffstat:
M | lib/wallet.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/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)