From: ThomasV Date: Mon, 28 Jan 2013 15:23:42 +0000 (+0400) Subject: bugfix: quotes introduced in the pep8 commit X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=4201d2f120c4ed895f266a2d80cd8abcfc068e3b bugfix: quotes introduced in the pep8 commit --- diff --git a/backends/bitcoind/blockchain_processor.py b/backends/bitcoind/blockchain_processor.py index 67cfba8..93177e1 100644 --- a/backends/bitcoind/blockchain_processor.py +++ b/backends/bitcoind/blockchain_processor.py @@ -744,7 +744,7 @@ class BlockchainProcessor(Processor): def invalidate_cache(self, address): with self.cache_lock: - if 'address' in self.history_cache: + if address in self.history_cache: print_log("cache: invalidating", address) self.history_cache.pop(address)