Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backups
youtube-dl
Commits
e2f8bf58
Unverified
Commit
e2f8bf58
authored
Feb 29, 2020
by
Sergey M․
Browse files
[extractor/common] Convert ISM manifest to unicode before processing on python 2 (#24152)
parent
b76f0e58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
youtube_dl/extractor/common.py
youtube_dl/extractor/common.py
+1
-1
No files found.
youtube_dl/extractor/common.py
View file @
e2f8bf58
...
...
@@ -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
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment