commit 71aa823ee053fd5cdcb8cc0e41f50a989fc0ae26
parent 47ae32a900e66a7feb683601ff27cd93c932c597
Author: Neil <kyuupichan@gmail.com>
Date: Mon, 19 Oct 2015 12:20:22 +0900
Merge pull request #1498 from SmileyChris/master
Fix KeyErrror typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -772,7 +772,7 @@ class Abstract_Wallet(PrintError):
try:
self.txi.pop(tx_hash)
self.txo.pop(tx_hash)
- except KeyErrror:
+ except KeyError:
self.print_error("tx was not in history", tx_hash)
def receive_tx_callback(self, tx_hash, tx, tx_height):