diff options
author | 2012-01-16 20:45:10 +0100 | |
---|---|---|
committer | 2012-01-16 20:45:10 +0100 | |
commit | c313ffba1a9b1dcec92ab6959c1e9d3fa853df78 (patch) | |
tree | 3f60a947308a10dec2e6550876909247596c9a28 /module/plugins/hoster/FourSharedCom.py | |
parent | correct utf8 conversion for urls (diff) | |
parent | merge in plugin updates (diff) | |
download | pyload-c313ffba1a9b1dcec92ab6959c1e9d3fa853df78.tar.xz |
Merge
Diffstat (limited to 'module/plugins/hoster/FourSharedCom.py')
-rw-r--r-- | module/plugins/hoster/FourSharedCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FourSharedCom.py b/module/plugins/hoster/FourSharedCom.py index b1cc252e2..2b27eed28 100644 --- a/module/plugins/hoster/FourSharedCom.py +++ b/module/plugins/hoster/FourSharedCom.py @@ -8,7 +8,7 @@ class FourSharedCom(SimpleHoster): __name__ = "FourSharedCom" __type__ = "hoster" __pattern__ = r"http://[\w\.]*?4shared(-china)?\.com/(account/)?(download|get|file|document|photo|video|audio)/.+?/.*" - __version__ = "0.24" + __version__ = "0.25" __description__ = """4Shared Download Hoster""" __author_name__ = ("jeix", "zoidberg") __author_mail__ = ("jeix@hasnomail.de", "zoidberg@mujmail.cz") @@ -19,7 +19,7 @@ class FourSharedCom(SimpleHoster): FILE_NAME_REPLACEMENTS = [(r"&#(\d+).", lambda m: unichr(int(m.group(1))))] DOWNLOAD_BUTTON_PATTERN = '<a href="([^"]+)"\s*class="dbtn' - DOWNLOAD_URL_PATTERN = "<div class=\"(?:dl|xxlarge bold)\">\s*<a href='([^']+)'" + DOWNLOAD_URL_PATTERN = r"<a class=\"linkShowD3\" href='([^']+)'>Download file now</a>" def handleFree(self): found = re.search(self.DOWNLOAD_BUTTON_PATTERN, self.html) |