mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-06 14:47:06 +01: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'):
|
||||
continue
|
||||
yield {
|
||||
'format_id': f'{format_id}-{ext}',
|
||||
'format_id': '{}-{}'.format(format_id, ext),
|
||||
'ext': ext,
|
||||
'source_preference': pref,
|
||||
'url': urljoin(spl_url, stream['url']),
|
||||
|
Loading…
Reference in New Issue
Block a user