From 169f3e8637b5a40b82a06f4b951e7896d70fe220 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 29 Mar 2018 17:47:06 +0200 Subject: Remove assigned but never used local variables --- test/functional/test_framework/authproxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/test_framework/authproxy.py') diff --git a/test/functional/test_framework/authproxy.py b/test/functional/test_framework/authproxy.py index bd3a3b3fab..900090bb66 100644 --- a/test/functional/test_framework/authproxy.py +++ b/test/functional/test_framework/authproxy.py @@ -151,7 +151,7 @@ class AuthServiceProxy(): req_start_time = time.time() try: http_response = self.__conn.getresponse() - except socket.timeout as e: + except socket.timeout: raise JSONRPCException({ 'code': -344, 'message': '%r RPC took longer than %f seconds. Consider ' -- cgit v1.2.3