summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-27 14:22:36 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-27 14:22:36 +0200
commitf490e77e77c9db082e073f002088d021b16513ad (patch)
treeb79d7f0c8cebb5db07580ebd32787fc2a562a5e5
parent2dc592991aac5e0b3b91e3d2123490184033177e (diff)
downloadyoutube-dl-f490e77e77c9db082e073f002088d021b16513ad.tar.gz
youtube-dl-f490e77e77c9db082e073f002088d021b16513ad.tar.xz
youtube-dl-f490e77e77c9db082e073f002088d021b16513ad.zip
[youtube] Set the thumbnail to None if it can't be extracted
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 9aee2ebf2..618d87515 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1360,7 +1360,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
             video_thumbnail = m_thumb.group(1)
         elif 'thumbnail_url' not in video_info:
             self._downloader.report_warning(u'unable to extract video thumbnail')
-            video_thumbnail = ''
+            video_thumbnail = None
         else:   # don't panic if we can't find it
             video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])