diff options
author | 2013-05-20 20:19:00 +0200 | |
---|---|---|
committer | 2013-05-20 20:19:00 +0200 | |
commit | d4451312d80b0443cf7a48142c00dcc7bf3be65a (patch) | |
tree | b152f6dc0e5a98b4e944648590e34f2f12282a45 /module/plugins/hoster/CzshareCom.py | |
parent | smaller footer (diff) | |
parent | CloudzerNet: reconnect support (diff) | |
download | pyload-d4451312d80b0443cf7a48142c00dcc7bf3be65a.tar.xz |
Merge branch 'stable'
Diffstat (limited to 'module/plugins/hoster/CzshareCom.py')
-rw-r--r-- | module/plugins/hoster/CzshareCom.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py index a4a811e82..347427586 100644 --- a/module/plugins/hoster/CzshareCom.py +++ b/module/plugins/hoster/CzshareCom.py @@ -16,6 +16,9 @@ @author: zoidberg """ +# Test links (random.bin): +# http://czshare.com/5278880/random.bin + import re from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo, PluginParseError from module.utils import parseFileSize @@ -24,7 +27,7 @@ class CzshareCom(SimpleHoster): __name__ = "CzshareCom" __type__ = "hoster" __pattern__ = r"http://(\w*\.)*czshare\.(com|cz)/(\d+/|download.php\?).*" - __version__ = "0.92" + __version__ = "0.93" __description__ = """CZshare.com""" __author_name__ = ("zoidberg") @@ -80,7 +83,7 @@ class CzshareCom(SimpleHoster): self.resetAccount() # download the file, destination is determined by pyLoad - self.download("http://czshare.com/profi_down.php", cookies=True, post=inputs) + self.download("http://czshare.com/profi_down.php", post=inputs, disposition=True) self.checkDownloadedFile() def handleFree(self): |