diff options
author | spoob <spoob@gmx.de> | 2010-08-15 22:48:11 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-08-15 22:48:11 +0200 |
commit | 258a8799f5aa2a4637586bea0276adf969650ccc (patch) | |
tree | b704ca0a5aaf72e47f4ea62762d37c9007c9d980 /module/plugins/hoster/YoutubeCom.py | |
parent | scripts fix, rs fix, closed #127 (diff) | |
download | pyload-258a8799f5aa2a4637586bea0276adf969650ccc.tar.xz |
Youtube Playlist
Diffstat (limited to 'module/plugins/hoster/YoutubeCom.py')
-rw-r--r-- | module/plugins/hoster/YoutubeCom.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/plugins/hoster/YoutubeCom.py b/module/plugins/hoster/YoutubeCom.py index d92d8d128..79c359ad7 100644 --- a/module/plugins/hoster/YoutubeCom.py +++ b/module/plugins/hoster/YoutubeCom.py @@ -32,6 +32,7 @@ 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).decode("utf8") pyfile.name = name #.replace("&", "&").replace("ö", "oe").replace("ä", "ae").replace("ü", "ue") |