proxywatchd: remove bogus blanket exception handler

this would catch *any* exception, including typos
This commit is contained in:
rofl0r
2019-05-01 20:05:54 +01:00
parent 01435671c1
commit 866f308322

View File

@@ -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