diff options
author | 2014-12-09 01:13:05 +0100 | |
---|---|---|
committer | 2014-12-09 01:13:05 +0100 | |
commit | e4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7 (patch) | |
tree | ac66b8d581519a1db402b41567531d8e59be264d /module/plugins/hooks/ImageTyperz.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/ImageTyperz.py')
-rw-r--r-- | module/plugins/hooks/ImageTyperz.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/hooks/ImageTyperz.py b/module/plugins/hooks/ImageTyperz.py index b00c5118f..f89d64c37 100644 --- a/module/plugins/hooks/ImageTyperz.py +++ b/module/plugins/hooks/ImageTyperz.py @@ -33,7 +33,7 @@ class ImageTyperzException(Exception): class ImageTyperz(Hook): __name__ = "ImageTyperz" __type__ = "hook" - __version__ = "0.04" + __version__ = "0.05" __config__ = [("username", "str", "Username", ""), ("passkey", "password", "Password", ""), @@ -50,6 +50,11 @@ class ImageTyperz(Hook): GETCREDITS_URL = "http://captchatypers.com/Forms/RequestBalance.ashx" + #@TODO: Remove in 0.4.10 + def initPeriodical(self): + pass + + def setup(self): self.info = {} #@TODO: Remove in 0.4.10 |