aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/yahoo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-06-04 20:11:23 +0700
committerSergey M․ <dstftw@gmail.com>2014-06-04 20:11:23 +0700
commit6340716b3ac75384eecf48025c71380949883b0d (patch)
tree78e6318945aeece30d677055fa3163adf4c2ec82 /youtube_dl/extractor/yahoo.py
parentb675b32e6b7584c94e22786f1c9b33df258a1912 (diff)
downloadyoutube-dl-6340716b3ac75384eecf48025c71380949883b0d.tar.xz
[yahoo] Make thumbnail optional (Closes #3043)
Diffstat (limited to 'youtube_dl/extractor/yahoo.py')
-rw-r--r--youtube_dl/extractor/yahoo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py
index 393f6ffbe..c95c59db8 100644
--- a/youtube_dl/extractor/yahoo.py
+++ b/youtube_dl/extractor/yahoo.py
@@ -113,7 +113,7 @@ class YahooIE(InfoExtractor):
'title': meta['title'],
'formats': formats,
'description': clean_html(meta['description']),
- 'thumbnail': meta['thumbnail'],
+ 'thumbnail': meta.get('thumbnail'),
}