From 5e79527881c7a3c722d198665ff402907d82ff6e Mon Sep 17 00:00:00 2001 From: ViruZs <52099763+TGExplore@users.noreply.github.com> Date: Thu, 30 Jul 2020 18:22:14 +0530 Subject: [PATCH] Update youtube.py --- youtube_dl/extractor/youtube.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 1a2088eda..18b8fa5bb 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -2244,7 +2244,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor): # thumbnail image # We try first to get a high quality image: - m_thumb = re.search(r'',video_webpage, re.DOTALL) + m_thumb = re.search(r'', + video_webpage, re.DOTALL) if m_thumb is not None: video_thumbnail = m_thumb.group(1) elif 'thumbnail_url' not in video_info: