From d09244d04ddfe56f1f61227e008edc664f7569c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Serneels?= Date: Sun, 14 Apr 2019 18:12:41 +0200 Subject: [PATCH] proxywatchd: fix Exception error Exception in thread Thread-9: Traceback (most recent call last): File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner self.run() File "/usr/lib/python2.7/threading.py", line 754, in run self.__target(*self.__args, **self.__kwargs) File "proxywatchd.py", line 200, in workloop job.run() File "proxywatchd.py", line 123, in run sock, proto, duration, tor, srv, failinc = self.connect_socket() ValueError: need more than 5 values to unpack --- proxywatchd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxywatchd.py b/proxywatchd.py index 8e2173d..5dcccef 100644 --- a/proxywatchd.py +++ b/proxywatchd.py @@ -113,7 +113,7 @@ class WorkerJob(): raise(e) except: fail_inc = fail_inc + 1 - return None, None, None, None, fail_inc + return None, None, None, None, None, fail_inc return None, None, None, None, None, fail_inc