mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
do not use f-strings
This commit is contained in:
parent
b1297308fb
commit
d02064218b
|
@ -43,7 +43,7 @@ class StreamCZIE(InfoExtractor):
|
||||||
if not stream.get('url'):
|
if not stream.get('url'):
|
||||||
continue
|
continue
|
||||||
yield {
|
yield {
|
||||||
'format_id': f'{format_id}-{ext}',
|
'format_id': '{}-{}'.format(format_id, ext),
|
||||||
'ext': ext,
|
'ext': ext,
|
||||||
'source_preference': pref,
|
'source_preference': pref,
|
||||||
'url': urljoin(spl_url, stream['url']),
|
'url': urljoin(spl_url, stream['url']),
|
||||||
|
|
Loading…
Reference in a new issue