1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-24 11:11:54 +00:00

Fix quoting

This commit is contained in:
dirkf 2024-11-18 02:39:56 +00:00 committed by GitHub
parent 3525025a6f
commit ff968566a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,7 +47,7 @@ class VOEIE(InfoExtractor):
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']))