diff options
author | mkaay <mkaay@mkaay.de> | 2010-06-20 17:17:47 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-06-20 17:17:47 +0200 |
commit | 56ed29b85429010f5860cd62ad1b50002b11c6b0 (patch) | |
tree | c506767a3cd0175909de3063d29d6a6e0e9635a1 /module/plugins/hoster | |
parent | workaround for ExternalScripts.py package location (diff) | |
download | pyload-56ed29b85429010f5860cd62ad1b50002b11c6b0.tar.xz |
fix fix fix
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 13d240bb4..f7ef3d4f1 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -99,7 +99,8 @@ class ShareonlineBiz(Hoster): sleep(3) self.html[1] = self.load(url, post={"captchacode": captcha}, cookies=True) if re.search(r"no slots available", self.html[1]): - self.time_plus_wait = time() + 60 + self.time_plus_wait = time() + 120 + self.logger.debug("%s: no free slots, waiting 120 seconds" % (self.__name__)) return False if re.search(r"Der Download ist Ihnen zu langsam", self.html[1]): self.time_plus_wait = time() + 15 |