diff options
author | Jeix <devnull@localhost> | 2010-11-19 14:15:17 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-11-19 14:15:17 +0100 |
commit | c881b83f107e3c5b28bfcc06508d4db128d37e20 (patch) | |
tree | fd3a463b0f5bf3ee45fdfa30db4270609c78dbf3 /module/plugins/hoster | |
parent | closed #153 (diff) | |
download | pyload-c881b83f107e3c5b28bfcc06508d4db128d37e20.tar.xz |
sharecx fix and gui package edit
Diffstat (limited to 'module/plugins/hoster')
-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):
|