diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:17:38 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:20:14 +0200 |
commit | 52b5c2a15b2dfa9bcc2ffdcc90b8e3f29fdaa7d8 (patch) | |
tree | be392f70e0d628a97e793ef47080e0669420e33a /pyload/plugins/hoster/BezvadataCz.py | |
parent | Fix retry time formats (diff) | |
download | pyload-52b5c2a15b2dfa9bcc2ffdcc90b8e3f29fdaa7d8.tar.xz |
Use wait to set time in SimpleHoster plugins
Merges vuolter/pyload@bb002ac
(cherry picked from commit 7f1467c64fe5c0e902498b3252afd65cb68ed2f9)
Diffstat (limited to 'pyload/plugins/hoster/BezvadataCz.py')
-rw-r--r-- | pyload/plugins/hoster/BezvadataCz.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pyload/plugins/hoster/BezvadataCz.py b/pyload/plugins/hoster/BezvadataCz.py index e6cd4c809..656f45fd3 100644 --- a/pyload/plugins/hoster/BezvadataCz.py +++ b/pyload/plugins/hoster/BezvadataCz.py @@ -83,14 +83,13 @@ class BezvadataCz(SimpleHoster): #countdown found = re.search(r'id="countdown">(\d\d):(\d\d)<', self.html) wait_time = (int(found.group(1)) * 60 + int(found.group(2)) + 1) if found else 120 - self.setWait(wait_time, False) - self.wait() + self.wait(wait_time, False) self.download(url) def checkErrors(self): if 'images/button-download-disable.png' in self.html: - self.longWait(300, 24) # parallel dl limit + self.longWait(5 * 60, 24) # parallel dl limit elif '<div class="infobox' in self.html: self.tempOffline() |