diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:17:03 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:17:03 +0200 |
commit | 381c4d02a900fac224ccaa802db080cf577ed2fb (patch) | |
tree | 7ae70daa2def01e05193d2bbef3a851aa33eeae1 /module/plugins/hoster/Premium4Me.py | |
parent | Fix EOF (diff) | |
download | pyload-381c4d02a900fac224ccaa802db080cf577ed2fb.tar.xz |
Fix retry time formats
Merges vuolter/pyload@498b9e3
Diffstat (limited to 'module/plugins/hoster/Premium4Me.py')
-rw-r--r-- | module/plugins/hoster/Premium4Me.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/Premium4Me.py b/module/plugins/hoster/Premium4Me.py index 8709aac82..135ad63c3 100644 --- a/module/plugins/hoster/Premium4Me.py +++ b/module/plugins/hoster/Premium4Me.py @@ -42,7 +42,7 @@ class Premium4Me(Hoster): check = self.checkDownload({"nopremium": "No premium account available"}) if check == "nopremium": - self.retry(60, 300, 'No premium account available') + self.retry(60, 5 * 60, "No premium account available") err = '' if self.req.http.code == '420': |