diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-23 15:40:56 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-23 15:40:56 +0200 |
commit | ef72dfafc1a4995721d85c15bd9c32c44fb39bd5 (patch) | |
tree | 6e3b883d9b045797e9d6b3867e0523a348569a96 | |
parent | Novafile: fixed #337 (diff) | |
download | pyload-ef72dfafc1a4995721d85c15bd9c32c44fb39bd5.tar.xz |
YouTube: fixed #264
-rw-r--r-- | module/plugins/hoster/YoutubeCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/YoutubeCom.py b/module/plugins/hoster/YoutubeCom.py index 316eebd4b..e829bedd0 100644 --- a/module/plugins/hoster/YoutubeCom.py +++ b/module/plugins/hoster/YoutubeCom.py @@ -36,7 +36,7 @@ class YoutubeCom(Hoster): __name__ = "YoutubeCom" __type__ = "hoster" __pattern__ = r"https?://(?:[^/]*?)youtube\.com/watch.*?[?&]v=.*" - __version__ = "0.35" + __version__ = "0.36" __config__ = [("quality", "sd;hd;fullhd;240p;360p;480p;720p;1080p;3072p", "Quality Setting", "hd"), ("fmt", "int", "FMT/ITAG Number (5-102, 0 for auto)", 0), (".mp4", "bool", "Allow .mp4", True), @@ -49,7 +49,7 @@ class YoutubeCom(Hoster): __author_mail__ = ("spoob@pyload.org", "zoidberg@mujmail.cz") # Invalid characters that must be removed from the file name - invalidChars = ':?><"|\\' + invalidChars = u'\u2605:?><"|\\' # name, width, height, quality ranking, 3D formats = {5: (".flv", 400, 240, 1, False), |