diff options
author | Jeix <devnull@localhost> | 2010-11-19 14:21:32 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-11-19 14:21:32 +0100 |
commit | 244e50a402fb56c6fd54c45bcc7e137198656746 (patch) | |
tree | 347efd0c6f8c31d74ededbf962d6ad4020e3e9cf /module/plugins | |
parent | RelinkUs: Add support for password protected packages (diff) | |
parent | sharecx fix and gui package edit (diff) | |
download | pyload-244e50a402fb56c6fd54c45bcc7e137198656746.tar.xz |
Merge
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/ShareCx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareCx.py b/module/plugins/hoster/ShareCx.py index 2615c6e11..38c557193 100644 --- a/module/plugins/hoster/ShareCx.py +++ b/module/plugins/hoster/ShareCx.py @@ -138,7 +138,7 @@ class ShareCx(Hoster): if self.html is None:
self.download_html()
- name = re.search(r'alt="Download" /></span>(.*?)</h3>', self.html).group(1)
+ name = re.search(r'<title>Download: (.*?)</title>', self.html).group(1)
return name
def file_exists(self):
|