Browse Source
[extractor/common] Convert ISM manifest to unicode before processing on python 2 (#24152)
master
Sergey M․
5 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/common.py
|
|
@ -2341,7 +2341,7 @@ class InfoExtractor(object): |
|
|
|
return [] |
|
|
|
ism_doc, urlh = res |
|
|
|
|
|
|
|
return self._parse_ism_formats(ism_doc, urlh.geturl(), ism_id) |
|
|
|
return self._parse_ism_formats(ism_doc, compat_str(urlh.geturl()), ism_id) |
|
|
|
|
|
|
|
def _parse_ism_formats(self, ism_doc, ism_url, ism_id=None): |
|
|
|
""" |
|
|
|