summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-05 01:43:10 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-05 01:44:36 +0200
commit4160919db621472e85460d0f4ec0052e3536ec93 (patch)
tree0860a5f2cdea5129136f65e81cd11017d7373b1d
parentMerge pull request #1392 from GammaC0de/GammaC0de-fix-ExtractArchive (diff)
downloadpyload-4160919db621472e85460d0f4ec0052e3536ec93.tar.xz
[SimpleHoster] Why Premium download fails?
-rw-r--r--module/plugins/internal/SimpleHoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py
index df3d66ea2..f77a31ae2 100644
--- a/module/plugins/internal/SimpleHoster.py
+++ b/module/plugins/internal/SimpleHoster.py
@@ -244,7 +244,7 @@ def secondsToMidnight(gmt=0):
class SimpleHoster(Hoster):
__name__ = "SimpleHoster"
__type__ = "hoster"
- __version__ = "1.40"
+ __version__ = "1.41"
__pattern__ = r'^unmatchable$'
__config__ = [("use_premium", "bool", "Use premium account if available", True)]
@@ -489,7 +489,7 @@ class SimpleHoster(Hoster):
except Fail, e: #@TODO: Move to PluginThread in 0.4.10
if self.premium:
- self.logWarning(_("Premium download failed"))
+ self.logWarning(_("Premium download failed"), e)
self.retryFree()
else:
raise Fail(e)