summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/YoupornCom.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-06-27 22:14:00 +0200
committerGravatar Jeix <devnull@localhost> 2010-06-27 22:14:00 +0200
commit5c6d14bb8d2f17882fb9ba74229d027486ea8a9c (patch)
treede3179a6652343eda3555e52c5d135f372db4d50 /module/plugins/hoster/YoupornCom.py
parentyouporn fix (diff)
downloadpyload-5c6d14bb8d2f17882fb9ba74229d027486ea8a9c.tar.xz
fixed #115
repr(url) in Request.py shows the bug. The webinterface added the links with a trailing "\r".
Diffstat (limited to 'module/plugins/hoster/YoupornCom.py')
-rw-r--r--module/plugins/hoster/YoupornCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/YoupornCom.py b/module/plugins/hoster/YoupornCom.py
index 220d14a9e..75ecbfe26 100644
--- a/module/plugins/hoster/YoupornCom.py
+++ b/module/plugins/hoster/YoupornCom.py
@@ -31,7 +31,7 @@ class YoupornCom(Hoster):
def download_html(self):
url = self.parent.url
- self.html = self.load(url, post={"user_choice":"Enter"})
+ self.html = self.load(url, post={"user_choice":"Enter"}, cookies=False)
def get_file_url(self):
""" returns the absolute downloadable filepath
@@ -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) + '.flv'
+ return re.search(file_name_pattern, self.html).group(1).replace("&amp;", "&") + '.flv'
def file_exists(self):
""" returns True or False