summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2016-03-02 18:02:46 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2016-03-02 18:02:46 +0100
commit600cb08275c9546691bd2628477816f03764f24c (patch)
tree2295c6877e9411395dc3b2d96925476fa90f31bb
parent[ReCaptcha] Code cosmetics (diff)
parentShareonline.Biz: Fail on full instead of wait (diff)
downloadpyload-600cb08275c9546691bd2628477816f03764f24c.tar.xz
Merge pull request #2370 from saumsaum/patch-1
Shareonline.Biz: Fail on full instead of wait
-rw-r--r--module/plugins/hoster/ShareonlineBiz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py
index 270759d2d..e99891bbb 100644
--- a/module/plugins/hoster/ShareonlineBiz.py
+++ b/module/plugins/hoster/ShareonlineBiz.py
@@ -172,7 +172,7 @@ class ShareonlineBiz(SimpleHoster):
self.retry(wait=600, msg=errmsg)
elif errmsg == "full":
- self.retry(10, 600, _("Server is full"))
+ self.fail(_("Server is full"))
elif 'slot' in errmsg:
self.wait(3600, reconnect=True)