summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Captcha.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal/Captcha.py')
-rw-r--r--module/plugins/internal/Captcha.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/Captcha.py b/module/plugins/internal/Captcha.py
index db2d25a8a..486d92c19 100644
--- a/module/plugins/internal/Captcha.py
+++ b/module/plugins/internal/Captcha.py
@@ -10,7 +10,7 @@ from module.plugins.internal.Plugin import Plugin
class Captcha(Plugin):
__name__ = "Captcha"
__type__ = "captcha"
- __version__ = "0.34"
+ __version__ = "0.35"
__status__ = "testing"
__description__ = """Base anti-captcha plugin"""
@@ -34,8 +34,8 @@ class Captcha(Plugin):
pass
- def _log(self, level, args):
- return self.plugin._log(level, (self.__name__,) + args)
+ def _log(self, level, plugintype, pluginname, messages):
+ return self.plugin._log(level, plugintype, pluginname, (self.__name__,) + messages)
def recognize(self, image):