diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-10-01 23:52:18 +0200 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-10-01 23:52:18 +0200 |
commit | a3ecb6eaa2b449c15ce6367e21b3744401e5ab18 (patch) | |
tree | 39a6af87f47f7aa8e0af4f58e1aff00bfce2359e /module/plugins/hoster/CzshareCom.py | |
parent | filebeer folder crypter, multihoster unload fix (diff) | |
download | pyload-a3ecb6eaa2b449c15ce6367e21b3744401e5ab18.tar.xz |
rapidgator.net premium, novafile.com free, multihoster schedule refresh
Diffstat (limited to 'module/plugins/hoster/CzshareCom.py')
-rw-r--r-- | module/plugins/hoster/CzshareCom.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py index 356771ce4..8d035b64c 100644 --- a/module/plugins/hoster/CzshareCom.py +++ b/module/plugins/hoster/CzshareCom.py @@ -45,7 +45,7 @@ class CzshareCom(SimpleHoster): __name__ = "CzshareCom" __type__ = "hoster" __pattern__ = r"http://(\w*\.)*czshare\.(com|cz)/(\d+/|download.php\?).*" - __version__ = "0.89" + __version__ = "0.90" __description__ = """CZshare.com""" __author_name__ = ("zoidberg") @@ -142,6 +142,9 @@ class CzshareCom(SimpleHoster): self.html = self.load(parsed_url, cookies=True, post=inputs) + if re.search(self.MULTIDL_PATTERN, self.html): + self.waitForFreeSlot() + found = re.search("countdown_number = (\d+);", self.html) self.setWait(int(found.group(1)) if found else 50) |