summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Hoster.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-04 23:57:23 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-04 23:57:23 +0200
commit4323507752c54c03cf109ee4c5b74d11bae753dd (patch)
treec97936e4d2a4cd6eb1072c65c8a08a7d18816b18 /module/plugins/internal/Hoster.py
parentMerge pull request #1708 from estaban/patch-5 (diff)
downloadpyload-4323507752c54c03cf109ee4c5b74d11bae753dd.tar.xz
Fix https://github.com/pyload/pyload/issues/1707
Diffstat (limited to 'module/plugins/internal/Hoster.py')
-rw-r--r--module/plugins/internal/Hoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py
index 87ee2188c..a0cdb1e2e 100644
--- a/module/plugins/internal/Hoster.py
+++ b/module/plugins/internal/Hoster.py
@@ -43,7 +43,7 @@ def create_getInfo(klass):
class Hoster(Plugin):
__name__ = "Hoster"
__type__ = "hoster"
- __version__ = "0.18"
+ __version__ = "0.19"
__status__ = "testing"
__pattern__ = r'^unmatchable$'
@@ -332,7 +332,7 @@ class Hoster(Plugin):
if self.premium:
self.retry_free = True
else:
- self.fail(reason, _("Download was already free"))
+ self.fail("%s | %s" % (reason, _("Download was already free")))
raise Retry(encode(reason)) #@TODO: Remove `encode` in 0.4.10