URI: 
       tMerge pull request #1498 from SmileyChris/master - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 71aa823ee053fd5cdcb8cc0e41f50a989fc0ae26
   DIR parent 47ae32a900e66a7feb683601ff27cd93c932c597
  HTML 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:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -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):