diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-17 22:59:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-17 22:59:17 +0600 |
commit | 13fc7f3a05e0cb8b111e62540a4795611cc0a9dd (patch) | |
tree | 8454ae7e7c77d224dd5debfb23f5a75e4ecc5de9 /youtube_dl/extractor/generic.py | |
parent | eacd875f3be175a4ddd73763c73017ed04cce4ce (diff) | |
parent | 14309e1ddc476a7e2fc444a0443b2fc23186a385 (diff) |
Merge branch 'atomicdryad-pr-crashfix_compat_urllib_unquote'
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r-- | youtube_dl/extractor/generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 392ad3648..fc1bf2b6e 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -1115,7 +1115,7 @@ class GenericIE(InfoExtractor): # Sometimes embedded video player is hidden behind percent encoding # (e.g. https://github.com/rg3/youtube-dl/issues/2448) # Unescaping the whole page allows to handle those cases in a generic way - webpage = compat_urllib_parse.unquote(webpage) + webpage = compat_urllib_parse_unquote(webpage) # it's tempting to parse this further, but you would # have to take into account all the variations like |