diff options
author | Jeix <devnull@localhost> | 2010-06-28 21:05:03 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-06-28 21:05:03 +0200 |
commit | ad3312c62b2442a9824cb58cd2dcfad8cdfe817d (patch) | |
tree | 208fdd15f4f3db6d9a081dad6b8bf2d2c3bc7629 /module/plugins/hoster | |
parent | CLI import fix no.2 (diff) | |
download | pyload-ad3312c62b2442a9824cb58cd2dcfad8cdfe817d.tar.xz |
YouPorn name fix
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/YoupornCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/YoupornCom.py b/module/plugins/hoster/YoupornCom.py index 75ecbfe26..5c07f2c84 100644 --- a/module/plugins/hoster/YoupornCom.py +++ b/module/plugins/hoster/YoupornCom.py @@ -47,7 +47,7 @@ class YoupornCom(Hoster): self.download_html() file_name_pattern = r".*<title>(.*) - Free Porn Videos - YouPorn.com Lite \(BETA\)</title>.*" - return re.search(file_name_pattern, self.html).group(1).replace("&", "&") + '.flv' + return re.search(file_name_pattern, self.html).group(1).replace("&", "&").replace("/","") + '.flv' def file_exists(self): """ returns True or False |