diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2016-03-02 18:02:46 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2016-03-02 18:02:46 +0100 |
commit | 600cb08275c9546691bd2628477816f03764f24c (patch) | |
tree | 2295c6877e9411395dc3b2d96925476fa90f31bb | |
parent | [ReCaptcha] Code cosmetics (diff) | |
parent | Shareonline.Biz: Fail on full instead of wait (diff) | |
download | pyload-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.py | 2 |
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) |