From ef28a6cb26630f8f198a72eee34a2b5c8bd2f802 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Fri, 15 May 2015 23:09:10 +0600 Subject: [PATCH] [sportbox:embed] Relax thumbnail --- youtube_dl/extractor/sportbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/sportbox.py b/youtube_dl/extractor/sportbox.py index a869a1b25..8686f9d11 100644 --- a/youtube_dl/extractor/sportbox.py +++ b/youtube_dl/extractor/sportbox.py @@ -113,7 +113,7 @@ class SportBoxEmbedIE(InfoExtractor): thumbnail = self._search_regex( r'sportboxPlayer\.jwplayer_common_params\.image\s*=\s*"([^"]+)"', - webpage, 'thumbnail', fatal=False) + webpage, 'thumbnail', default=None) return { 'id': video_id, -- 2.30.2