diff options
author | Jeix <devnull@localhost> | 2010-10-29 16:29:01 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-10-29 16:29:01 +0200 |
commit | eb642efc03065f9f2b7a6d867b5c3034fdadc5df (patch) | |
tree | 012863cb8ad291b7f54273d7694bb5bce4db9d0f /module/plugins/hoster/ShareCx.py | |
parent | dont check for pil (diff) | |
download | pyload-eb642efc03065f9f2b7a6d867b5c3034fdadc5df.tar.xz |
closed #168
Diffstat (limited to 'module/plugins/hoster/ShareCx.py')
-rw-r--r-- | module/plugins/hoster/ShareCx.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ShareCx.py b/module/plugins/hoster/ShareCx.py index adebb1c77..2615c6e11 100644 --- a/module/plugins/hoster/ShareCx.py +++ b/module/plugins/hoster/ShareCx.py @@ -80,8 +80,7 @@ class ShareCx(Hoster): "referer" : referer,
"method_free" : method_free
})
-
-
+
m = re.search(r'startTimer\((\d+)\)', self.html)
if m is not None:
wait_time = int(m.group(1))
@@ -89,6 +88,7 @@ class ShareCx(Hoster): self.wantReconnect = True
self.log.debug("%s: IP blocked wait %d seconds." % (self.__name__, wait_time))
self.wait()
+ self.retry()
m = re.search(r'countdown">.*?(\d+).*?</span>', self.html)
if m is None:
|