diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:04:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:04:10 +0100 |
commit | 8b3589dd394d81177bf4680dddb5bdb9506b89ea (patch) | |
tree | f9e4b92955fe2577ef25e7bf07911bda3b5d7590 /module/plugins/hoster/SimplyPremiumCom.py | |
parent | [SimpleHoster] Improve wait method (diff) | |
download | pyload-8b3589dd394d81177bf4680dddb5bdb9506b89ea.tar.xz |
Update plugins to last changes
Diffstat (limited to 'module/plugins/hoster/SimplyPremiumCom.py')
-rw-r--r-- | module/plugins/hoster/SimplyPremiumCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/SimplyPremiumCom.py b/module/plugins/hoster/SimplyPremiumCom.py index f236fb01c..fbc7939e5 100644 --- a/module/plugins/hoster/SimplyPremiumCom.py +++ b/module/plugins/hoster/SimplyPremiumCom.py @@ -53,7 +53,7 @@ class SimplyPremiumCom(Hoster): self.retry(5, 60, "Reached maximum connctions") elif "trafficlimit" in page: self.logWarning(_("Reached daily limit for this host")) - self.retry(1, secondsToMidnight(gmt=2), "Daily limit for this host reached") + self.retry(wait_time=secondsToMidnight(gmt=2), "Daily limit for this host reached") elif "hostererror" in page: self.logWarning(_("Hoster temporarily unavailable, waiting 1 minute and retry")) self.retry(5, 60, "Hoster is temporarily unavailable") |