From 6acbca30b0de51462b1a486c83d936c0c4f5d94e Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Thu, 20 Nov 2014 02:32:36 +0100 Subject: Import threading instead thread + thread cleanup --- pyload/plugins/hook/DeathByCaptcha.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pyload/plugins/hook/DeathByCaptcha.py') diff --git a/pyload/plugins/hook/DeathByCaptcha.py b/pyload/plugins/hook/DeathByCaptcha.py index e4477565c..429258f89 100644 --- a/pyload/plugins/hook/DeathByCaptcha.py +++ b/pyload/plugins/hook/DeathByCaptcha.py @@ -6,7 +6,6 @@ import re from base64 import b64encode from pycurl import FORM_FILE, HTTPHEADER -from thread import start_new_thread from time import sleep from pyload.utils import json_loads @@ -186,7 +185,7 @@ class DeathByCaptcha(Hook): task.handler.append(self) task.data['service'] = self.__name__ task.setWaiting(180) - start_new_thread(self.processCaptcha, (task,)) + self.processCaptcha(task) def captchaInvalid(self, task): -- cgit v1.2.3