Skip to content

Commit

Permalink
Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf authored Nov 18, 2024
1 parent 3525025 commit ff96856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/voe.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def _real_extract(self, url):
webpage, 'title', group='title')

formats = []
for fmt in ('mp4, 'hls'):
for fmt in ('mp4', 'hls'):
if fmt not in sources:
continue
sources[fmt] = url_or_none(sources['fmt']) or url_or_none(base64.b64decode(sources['fmt']))
Expand Down

0 comments on commit ff96856

Please sign in to comment.