From ff968566a5cc3e6b2fa851bef268846a68f5fb0a Mon Sep 17 00:00:00 2001 From: dirkf Date: Mon, 18 Nov 2024 02:39:56 +0000 Subject: [PATCH] Fix quoting --- youtube_dl/extractor/voe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/voe.py b/youtube_dl/extractor/voe.py index cbf30f19a..40c2c9436 100644 --- a/youtube_dl/extractor/voe.py +++ b/youtube_dl/extractor/voe.py @@ -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']))