diff options
Diffstat (limited to 'module/plugins/internal/CaptchaService.py')
-rw-r--r-- | module/plugins/internal/CaptchaService.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py index 1a73ce5d1..20dc60427 100644 --- a/module/plugins/internal/CaptchaService.py +++ b/module/plugins/internal/CaptchaService.py @@ -6,7 +6,7 @@ from module.plugins.internal.Captcha import Captcha class CaptchaService(Captcha): __name__ = "CaptchaService" __type__ = "captcha" - __version__ = "0.31" + __version__ = "0.32" __status__ = "testing" __description__ = """Base anti-captcha service plugin""" @@ -18,10 +18,6 @@ class CaptchaService(Captcha): 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): |