From 7784d3c37ecb20b3aff157878b1a6c758b4529ac Mon Sep 17 00:00:00 2001 From: DataGhost Date: Mon, 30 May 2022 11:46:41 +0200 Subject: [PATCH] Fixed wrong variable name that shouldn't have been there --- youtube_dl/extractor/dumpert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/dumpert.py b/youtube_dl/extractor/dumpert.py index ea92602a8..6f49b3d15 100644 --- a/youtube_dl/extractor/dumpert.py +++ b/youtube_dl/extractor/dumpert.py @@ -69,7 +69,7 @@ class DumpertIE(InfoExtractor): ext = determine_ext(uri) if ext == 'm3u8': formats.extend(self._extract_m3u8_formats( - uri, video_id, ext='mp4', m3u8_id=format_id)) + uri, video_id, ext='mp4', m3u8_id=version)) else: formats.append({ 'url': uri,