diff options
| author | 2014-04-11 12:17:03 +0200 | |
|---|---|---|
| committer | 2014-04-11 12:17:03 +0200 | |
| commit | 381c4d02a900fac224ccaa802db080cf577ed2fb (patch) | |
| tree | 7ae70daa2def01e05193d2bbef3a851aa33eeae1 /module/plugins/hoster/UploadheroCom.py | |
| parent | Fix EOF (diff) | |
| download | pyload-381c4d02a900fac224ccaa802db080cf577ed2fb.tar.xz | |
Fix retry time formats
Merges vuolter/pyload@498b9e3
Diffstat (limited to 'module/plugins/hoster/UploadheroCom.py')
| -rw-r--r-- | module/plugins/hoster/UploadheroCom.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/module/plugins/hoster/UploadheroCom.py b/module/plugins/hoster/UploadheroCom.py index 993f34a0f..053705c05 100644 --- a/module/plugins/hoster/UploadheroCom.py +++ b/module/plugins/hoster/UploadheroCom.py @@ -81,7 +81,7 @@ class UploadheroCom(SimpleHoster):              self.html = self.load("http://uploadhero.co%s" % found.group(1))              found = re.search(self.IP_WAIT_PATTERN, self.html) -            wait_time = (int(found.group(1)) * 60 + int(found.group(2))) if found else 300 +            wait_time = (int(found.group(1)) * 60 + int(found.group(2))) if found else 5 * 60              self.setWait(wait_time, True)              self.wait()              self.retry() | 
