summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/CaptchaService.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal/CaptchaService.py')
-rw-r--r--module/plugins/internal/CaptchaService.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py
index d3eef43c8..1a73ce5d1 100644
--- a/module/plugins/internal/CaptchaService.py
+++ b/module/plugins/internal/CaptchaService.py
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
-from module.plugins.internal.Plugin import Plugin
+from module.plugins.internal.Captcha import Captcha
-class CaptchaService(Plugin):
+class CaptchaService(Captcha):
__name__ = "CaptchaService"
__type__ = "captcha"
__version__ = "0.31"
@@ -18,6 +18,10 @@ class CaptchaService(Plugin):
self.key = None #: Last key detected
+ def _log(self, level, args):
+ return self.plugin._log(level, (self.__name__,) + args)
+
+
#@TODO: Recheck in 0.4.10
def retrieve_key(self, data):
if self.detect_key(data):