Skip to content

Commit

Permalink
do not use f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
arkamar authored and dirkf committed Feb 14, 2022
1 parent b129730 commit d020642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/streamcz.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _extract_formats(self, spl_url, video):
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']),
Expand Down

0 comments on commit d020642

Please sign in to comment.