diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-01-22 17:51:04 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-01-22 17:51:04 +0100 |
commit | cbebb62790444454d0813a8535df3cc1c2525d14 (patch) | |
tree | 55e00a603f9e414e55bade1f734fbd54c6ba5152 | |
parent | [LinkCryptWs] Version up (diff) | |
download | pyload-cbebb62790444454d0813a8535df3cc1c2525d14.tar.xz |
[Captcha] fix #2311
-rw-r--r-- | module/plugins/internal/Captcha.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Captcha.py b/module/plugins/internal/Captcha.py index 0c25e5650..7e851ed5d 100644 --- a/module/plugins/internal/Captcha.py +++ b/module/plugins/internal/Captcha.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import encode class Captcha(Plugin): __name__ = "Captcha" __type__ = "captcha" - __version__ = "0.52" + __version__ = "0.53" __status__ = "stable" __description__ = """Base anti-captcha plugin""" @@ -103,7 +103,7 @@ class Captcha(Plugin): self.pyfile.plugin.retry_captcha(msg=self.task.error) elif self.task.result: - self.log_info(_("Captcha result: `%s`") % result) + self.log_info(_("Captcha result: `%s`") % (result,)) else: self.pyfile.plugin.retry_captcha(msg=_("No captcha result obtained in appropriate timing")) |