From 866f30832294d3e0a983fbb0b388047599f910ca Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 1 May 2019 20:05:54 +0100 Subject: [PATCH] proxywatchd: remove bogus blanket exception handler this would catch *any* exception, including typos --- proxywatchd.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/proxywatchd.py b/proxywatchd.py index 5dcccef..fd1c73f 100644 --- a/proxywatchd.py +++ b/proxywatchd.py @@ -111,9 +111,6 @@ class WorkerJob(): except KeyboardInterrupt as e: raise(e) - except: - fail_inc = fail_inc + 1 - return None, None, None, None, None, fail_inc return None, None, None, None, None, fail_inc