diff options
author | 2012-10-20 09:30:04 +0200 | |
---|---|---|
committer | 2012-10-20 09:30:04 +0200 | |
commit | 1b494bca9f442b3a8dd75818c68f41235dcdbdfe (patch) | |
tree | 133b30c975f6541b1a01fa289eebc5d8295b53ab /module/plugins/hoster/WebshareCz.py | |
parent | update CaptchaBrotherhood - closed #696, sharerapid.com (diff) | |
download | pyload-1b494bca9f442b3a8dd75818c68f41235dcdbdfe.tar.xz |
Diffstat (limited to 'module/plugins/hoster/WebshareCz.py')
-rw-r--r-- | module/plugins/hoster/WebshareCz.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/hoster/WebshareCz.py b/module/plugins/hoster/WebshareCz.py index b60fda7e4..195e65a93 100644 --- a/module/plugins/hoster/WebshareCz.py +++ b/module/plugins/hoster/WebshareCz.py @@ -24,7 +24,7 @@ class WebshareCz(SimpleHoster): __name__ = "WebshareCz" __type__ = "hoster" __pattern__ = r"http://(\w+\.)?webshare.cz/(stahnout/)?(?P<ID>\w{10})-.+" - __version__ = "0.11" + __version__ = "0.12" __description__ = """WebShare.cz""" __author_name__ = ("zoidberg") @@ -33,6 +33,9 @@ class WebshareCz(SimpleHoster): FILE_OFFLINE_PATTERN = r'<h3>Soubor ".*?" nebyl nalezen.</h3>' DOWNLOAD_LINK_PATTERN = r'id="download_link" href="(?P<url>.*?)"' + + def setup(self): + self.multiDL = True def handleFree(self): url_a = re.search(r"(var l.*)", self.html).group(1) |