diff options
Diffstat (limited to 'pyload/plugins/hook/CaptchaBrotherhood.py')
-rw-r--r-- | pyload/plugins/hook/CaptchaBrotherhood.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyload/plugins/hook/CaptchaBrotherhood.py b/pyload/plugins/hook/CaptchaBrotherhood.py index 208462c14..8c037009a 100644 --- a/pyload/plugins/hook/CaptchaBrotherhood.py +++ b/pyload/plugins/hook/CaptchaBrotherhood.py @@ -10,7 +10,6 @@ try: except ImportError: import Image -from thread import start_new_thread from time import sleep from urllib import urlencode @@ -145,7 +144,7 @@ class CaptchaBrotherhood(Hook): task.handler.append(self) task.data['service'] = self.__name__ task.setWaiting(100) - start_new_thread(self.processCaptcha, (task,)) + self.processCaptcha(task) else: self.logInfo(_("Your CaptchaBrotherhood Account has not enough credits")) |