about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@atlas.cz>2022-02-12 12:30:29 +0100
committerdirkf <fieldhouse@gmx.net>2022-02-14 07:07:05 +0000
commitd02064218be76eba6350a13ccbbc473b1b439570 (patch)
tree5c7d584019fdd12069d625d27c4e49387027f047
parentb1297308fb7b423a60c3a28c74ac014d7b385a2a (diff)
downloadyoutube-dl-d02064218be76eba6350a13ccbbc473b1b439570.tar.gz
youtube-dl-d02064218be76eba6350a13ccbbc473b1b439570.tar.xz
youtube-dl-d02064218be76eba6350a13ccbbc473b1b439570.zip
do not use f-strings
-rw-r--r--youtube_dl/extractor/streamcz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/streamcz.py b/youtube_dl/extractor/streamcz.py
index fbdc44505..d1736c023 100644
--- a/youtube_dl/extractor/streamcz.py
+++ b/youtube_dl/extractor/streamcz.py
@@ -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']),