diff options
author | Jeix <devnull@localhost> | 2011-01-05 19:09:29 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2011-01-05 19:09:29 +0100 |
commit | caaf365ec934606a98e34a1ea3b98b3967bb2dcd (patch) | |
tree | de4e0e9ba4e773c50e3a76191529e7e9ffe3fef9 /module/plugins/hoster/YoupornCom.py | |
parent | fixed #207 (diff) | |
download | pyload-caaf365ec934606a98e34a1ea3b98b3967bb2dcd.tar.xz |
fixed youtube and youporn, thx LvX (forum.pyload.org/viewtopic.php?t=276)
Diffstat (limited to 'module/plugins/hoster/YoupornCom.py')
-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 c9fa4e465..b17a4ef80 100644 --- a/module/plugins/hoster/YoupornCom.py +++ b/module/plugins/hoster/YoupornCom.py @@ -42,7 +42,7 @@ class YoupornCom(Hoster): if self.html is None: self.download_html() - file_name_pattern = r".*<title>(.*) - Free Porn Videos - YouPorn.com Lite \(BETA\)</title>.*" + file_name_pattern = r"<title>(.*) - Free Porn Videos - YouPorn</title>" return re.search(file_name_pattern, self.html).group(1).replace("&", "&").replace("/","") + '.flv' def file_exists(self): |