diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-02 03:40:35 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-02 03:40:35 +0200 |
commit | 2105c775f01a31079c82f80c06f87beaa0354de6 (patch) | |
tree | a6bea65216e5f50047dd3cbbbdf0c5d399d4292c /module/plugins/internal/Base.py | |
parent | Fix https://github.com/pyload/pyload/issues/1917 + new function: parse_time (diff) | |
download | pyload-2105c775f01a31079c82f80c06f87beaa0354de6.tar.xz |
[UptoboxCom] Fix https://github.com/pyload/pyload/issues/1530 and https://github.com/pyload/pyload/issues/1904
Diffstat (limited to 'module/plugins/internal/Base.py')
-rw-r--r-- | module/plugins/internal/Base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Base.py b/module/plugins/internal/Base.py index 843d2ad11..bc9ef9158 100644 --- a/module/plugins/internal/Base.py +++ b/module/plugins/internal/Base.py @@ -355,7 +355,7 @@ class Base(Plugin): raise Retry(encode(msg)) #@TODO: Remove `encode` in 0.4.10 - def retry_captcha(self, attemps=10, wait=1, msg=_("Wrong captcha")): + def retry_captcha(self, attemps=10, wait=1, msg=_("Max captcha retries reached")): self.captcha.invalid() self.retry(attemps, wait, msg) |