From 6d7c50761237a26ee8c7a86d1d84b8b8bd384b8d Mon Sep 17 00:00:00 2001 From: Mattias Wadman Date: Tue, 17 Jan 2017 23:28:09 +0100 Subject: [PATCH] [infoq] Remove redundant determine_ext --- youtube_dl/extractor/infoq.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/youtube_dl/extractor/infoq.py b/youtube_dl/extractor/infoq.py index 5400c638d..9e41476cd 100644 --- a/youtube_dl/extractor/infoq.py +++ b/youtube_dl/extractor/infoq.py @@ -68,7 +68,6 @@ class InfoQIE(BokeCCBaseIE): return [{ 'format_id': 'http_video', 'url': http_video_url, - 'ext': determine_ext(http_video_url), 'http_headers': { 'Cookie': self._extract_cookies(webpage) }, @@ -83,7 +82,6 @@ class InfoQIE(BokeCCBaseIE): return [{ 'format_id': 'http_audio', 'url': http_audio_url, - 'ext': determine_ext(http_audio_url, ""), 'vcodec': 'none', 'http_headers': { 'Cookie': self._extract_cookies(webpage)