summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/Captcha9kw.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-09 01:13:05 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-09 01:13:05 +0100
commite4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7 (patch)
treeac66b8d581519a1db402b41567531d8e59be264d /module/plugins/hooks/Captcha9kw.py
parent[SkipRev] Update (2) (diff)
downloadpyload-e4c9e4ffc9e3f6bd6b16ce83796dc3d275d544f7.tar.xz
Don't start unused periodical in some addons
Diffstat (limited to 'module/plugins/hooks/Captcha9kw.py')
-rwxr-xr-xmodule/plugins/hooks/Captcha9kw.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/hooks/Captcha9kw.py b/module/plugins/hooks/Captcha9kw.py
index ead8aec9a..33ad00c49 100755
--- a/module/plugins/hooks/Captcha9kw.py
+++ b/module/plugins/hooks/Captcha9kw.py
@@ -17,7 +17,7 @@ from module.plugins.Hook import Hook
class Captcha9kw(Hook):
__name__ = "Captcha9kw"
__type__ = "hook"
- __version__ = "0.25"
+ __version__ = "0.26"
__config__ = [("activated" , "bool" , "Activated" , True ),
("ssl" , "bool" , "Use HTTPS" , True ),
@@ -41,6 +41,11 @@ class Captcha9kw(Hook):
API_URL = "http://www.9kw.eu/index.cgi"
+ #@TODO: Remove in 0.4.10
+ def initPeriodical(self):
+ pass
+
+
def setup(self):
self.info = {} #@TODO: Remove in 0.4.10
if self.getConfig("ssl"):