summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/UploadingCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-04-11 12:17:38 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:20:14 +0200
commit52b5c2a15b2dfa9bcc2ffdcc90b8e3f29fdaa7d8 (patch)
treebe392f70e0d628a97e793ef47080e0669420e33a /pyload/plugins/hoster/UploadingCom.py
parentFix retry time formats (diff)
downloadpyload-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/UploadingCom.py')
-rw-r--r--pyload/plugins/hoster/UploadingCom.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pyload/plugins/hoster/UploadingCom.py b/pyload/plugins/hoster/UploadingCom.py
index 230c67490..9bb526506 100644
--- a/pyload/plugins/hoster/UploadingCom.py
+++ b/pyload/plugins/hoster/UploadingCom.py
@@ -83,8 +83,7 @@ class UploadingCom(SimpleHoster):
if 'answer' in response and 'wait_time' in response['answer']:
wait_time = int(response['answer']['wait_time'])
self.logInfo("%s: Waiting %d seconds." % (self.__name__, wait_time))
- self.setWait(wait_time)
- self.wait()
+ self.wait(wait_time)
else:
self.pluginParseError("AJAX/WAIT")
@@ -107,8 +106,7 @@ class UploadingCom(SimpleHoster):
check = self.checkDownload({"html": re.compile("\A<!DOCTYPE html PUBLIC")})
if check == "html":
self.logWarning("Redirected to a HTML page, wait 10 minutes and retry")
- self.setWait(600, True)
- self.wait()
+ self.wait(10 * 60, True)
getInfo = create_getInfo(UploadingCom)