test: Fix “local variable 'e' is assigned to but never used”

flake8 F841 lints, as of flake8 3.6.0
This commit is contained in:
Ben Woosley
2019-01-24 21:16:35 -08:00
committed by MarcoFalke
parent 3f288a1c05
commit 68f546635d
2 changed files with 6 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ class AssumeValidTest(BitcoinTestFramework):
break
try:
p2p_conn.send_message(msg_block(self.blocks[i]))
except IOError as e:
except IOError:
assert not p2p_conn.is_connected
break