mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-11-01 09:26:45 -07:00
do not use f-strings
This commit is contained in:
@@ -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']),
|
||||||
|
|||||||
Reference in New Issue
Block a user