diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-17 21:15:55 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-17 21:15:55 +0600 |
commit | 89f691e14126d4e188c094a24c5cbcb693f26479 (patch) | |
tree | 87263325e609ebaea4815c362d0834cf0fa9a673 /youtube_dl/extractor | |
parent | 23fc384f2c3cf9afd41fd7e033fe0823d0fc5fa5 (diff) | |
parent | 4a632911443f0dbc2384fb82ade85382aeecc8dc (diff) |
Merge branch 'pr-crashfix_compat_urllib_unquote' of https://github.com/atomicdryad/youtube-dl into atomicdryad-pr-crashfix_compat_urllib_unquote
Diffstat (limited to 'youtube_dl/extractor')
-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 |