From e00ef98491f79ae8aa972ae1473dae4a7b78c07e Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 13 Apr 2015 17:20:59 +0200 Subject: Cleanup --- pyload/plugin/hook/BypassCaptcha.py | 2 ++ pyload/plugin/hook/Captcha9Kw.py | 2 ++ pyload/plugin/hook/CaptchaBrotherhood.py | 2 ++ pyload/plugin/hook/DeathByCaptcha.py | 2 ++ pyload/plugin/hook/ExpertDecoders.py | 2 ++ pyload/plugin/hook/ImageTyperz.py | 2 ++ 6 files changed, 12 insertions(+) (limited to 'pyload/plugin/hook') diff --git a/pyload/plugin/hook/BypassCaptcha.py b/pyload/plugin/hook/BypassCaptcha.py index 141ac7282..01359f3d3 100644 --- a/pyload/plugin/hook/BypassCaptcha.py +++ b/pyload/plugin/hook/BypassCaptcha.py @@ -123,6 +123,8 @@ class BypassCaptcha(Hook): @threaded + + def _processCaptcha(self, task): c = task.captchaFile try: diff --git a/pyload/plugin/hook/Captcha9Kw.py b/pyload/plugin/hook/Captcha9Kw.py index 9cb8e7928..b388de444 100644 --- a/pyload/plugin/hook/Captcha9Kw.py +++ b/pyload/plugin/hook/Captcha9Kw.py @@ -61,6 +61,8 @@ class Captcha9kw(Hook): @threaded + + def _processCaptcha(self, task): try: with open(task.captchaFile, 'rb') as f: diff --git a/pyload/plugin/hook/CaptchaBrotherhood.py b/pyload/plugin/hook/CaptchaBrotherhood.py index eff005d14..a4a461517 100644 --- a/pyload/plugin/hook/CaptchaBrotherhood.py +++ b/pyload/plugin/hook/CaptchaBrotherhood.py @@ -160,6 +160,8 @@ class CaptchaBrotherhood(Hook): @threaded + + def _processCaptcha(self, task): c = task.captchaFile try: diff --git a/pyload/plugin/hook/DeathByCaptcha.py b/pyload/plugin/hook/DeathByCaptcha.py index 4b77c8718..3688a68d0 100644 --- a/pyload/plugin/hook/DeathByCaptcha.py +++ b/pyload/plugin/hook/DeathByCaptcha.py @@ -206,6 +206,8 @@ class DeathByCaptcha(Hook): @threaded + + def _processCaptcha(self, task): c = task.captchaFile try: diff --git a/pyload/plugin/hook/ExpertDecoders.py b/pyload/plugin/hook/ExpertDecoders.py index 2e2982d2d..b34309d25 100644 --- a/pyload/plugin/hook/ExpertDecoders.py +++ b/pyload/plugin/hook/ExpertDecoders.py @@ -46,6 +46,8 @@ class ExpertDecoders(Hook): @threaded + + def _processCaptcha(self, task): task.data['ticket'] = ticket = uuid4() result = None diff --git a/pyload/plugin/hook/ImageTyperz.py b/pyload/plugin/hook/ImageTyperz.py index ca5e02559..717077790 100644 --- a/pyload/plugin/hook/ImageTyperz.py +++ b/pyload/plugin/hook/ImageTyperz.py @@ -141,6 +141,8 @@ class ImageTyperz(Hook): @threaded + + def _processCaptcha(self, task): c = task.captchaFile try: -- cgit v1.2.3