diff options
author | Jeix <devnull@localhost> | 2010-06-27 22:14:00 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-06-27 22:14:00 +0200 |
commit | 5c6d14bb8d2f17882fb9ba74229d027486ea8a9c (patch) | |
tree | de3179a6652343eda3555e52c5d135f372db4d50 /module/plugins/hoster | |
parent | youporn fix (diff) | |
download | pyload-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')
-rw-r--r-- | module/plugins/hoster/YoupornCom.py | 4 |
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("&", "&") + '.flv' def file_exists(self): """ returns True or False |