diff options
| author | Sergey M․ <dstftw@gmail.com> | 2014-06-04 20:11:23 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2014-06-04 20:11:23 +0700 | 
| commit | 6340716b3ac75384eecf48025c71380949883b0d (patch) | |
| tree | 78e6318945aeece30d677055fa3163adf4c2ec82 | |
| parent | b675b32e6b7584c94e22786f1c9b33df258a1912 (diff) | |
[yahoo] Make thumbnail optional (Closes #3043)
| -rw-r--r-- | youtube_dl/extractor/yahoo.py | 2 | 
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'),          } | 
