diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-09 01:13:05 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-09 01:13:05 +0100 |
commit | e4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7 (patch) | |
tree | ac66b8d581519a1db402b41567531d8e59be264d /module/plugins/hooks/BypassCaptcha.py | |
parent | [SkipRev] Update (2) (diff) | |
download | pyload-e4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7.tar.xz |
Don't start unused periodical in some addons
Diffstat (limited to 'module/plugins/hooks/BypassCaptcha.py')
-rw-r--r-- | module/plugins/hooks/BypassCaptcha.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/hooks/BypassCaptcha.py b/module/plugins/hooks/BypassCaptcha.py index 7e1ea6424..a32de7f42 100644 --- a/module/plugins/hooks/BypassCaptcha.py +++ b/module/plugins/hooks/BypassCaptcha.py @@ -29,7 +29,7 @@ class BypassCaptchaException(Exception): class BypassCaptcha(Hook): __name__ = "BypassCaptcha" __type__ = "hook" - __version__ = "0.04" + __version__ = "0.05" __config__ = [("force", "bool", "Force BC even if client is connected", False), ("passkey", "password", "Passkey", "")] @@ -48,6 +48,11 @@ class BypassCaptcha(Hook): GETCREDITS_URL = "http://bypasscaptcha.com/ex_left.php" + #@TODO: Remove in 0.4.10 + def initPeriodical(self): + pass + + def setup(self): self.info = {} #@TODO: Remove in 0.4.10 |