diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-30 22:07:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-30 22:07:43 +0100 |
commit | 68f0f8b17b6ef010b223019c4edf28b6aae382da (patch) | |
tree | 91271369f8d61dd5728a99775567f3e416fb93f4 | |
parent | [ExternalScripts] Fix https://github.com/pyload/pyload/issues/2225 (2) (diff) | |
download | pyload-68f0f8b17b6ef010b223019c4edf28b6aae382da.tar.xz |
[Captcha] Typo
-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 763783f82..1929fcc9f 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.49" + __version__ = "0.50" __status__ = "stable" __description__ = """Base anti-captcha plugin""" @@ -100,7 +100,7 @@ class Captcha(Plugin): if self.task.error: self.pyfile.plugin.retry_captcha(msg=self.task.error) - if self.task.result: + elif self.task.result: self.log_info(_("Captcha result: `%s`") % result) else: |