diff options
author | Jeix <devnull@localhost> | 2010-08-13 11:03:44 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-08-13 11:03:44 +0200 |
commit | b1cc10a0f5ea6c9cb8231c67dd016fe4a2414170 (patch) | |
tree | af31f7d3c6efb49a2afe905d4971001417299c03 /module/plugins/hoster/YoutubeCom.py | |
parent | irchook-xmlrpc fix (diff) | |
parent | improvements (diff) | |
download | pyload-b1cc10a0f5ea6c9cb8231c67dd016fe4a2414170.tar.xz |
Merge
Diffstat (limited to 'module/plugins/hoster/YoutubeCom.py')
-rw-r--r-- | module/plugins/hoster/YoutubeCom.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/module/plugins/hoster/YoutubeCom.py b/module/plugins/hoster/YoutubeCom.py index e40b0c9ad..d92d8d128 100644 --- a/module/plugins/hoster/YoutubeCom.py +++ b/module/plugins/hoster/YoutubeCom.py @@ -32,9 +32,8 @@ class YoutubeCom(Hoster): if self.getConf("quality") == "hd" or self.getConf("quality") == "hq": file_suffix = ".mp4" - name = re.search(file_name_pattern, html).group(1).replace("/", "") + file_suffix - - pyfile.name = name.replace("&", "&").replace("ö", "oe").replace("ä", "ae").replace("ü", "ue") + name = (re.search(file_name_pattern, html).group(1).replace("/", "") + file_suffix).decode("utf8") + pyfile.name = name #.replace("&", "&").replace("ö", "oe").replace("ä", "ae").replace("ü", "ue") if self.getConf("quality") == "sd": quality = "&fmt=6" @@ -45,4 +44,4 @@ class YoutubeCom(Hoster): file_url = 'http://youtube.com/get_video?video_id=' + videoId + '&t=' + videoHash + quality + "&asv=2" - self.download(file_url)
\ No newline at end of file + self.download(file_url) |