youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6340716b3ac75384eecf48025c71380949883b0d
parent b675b32e6b7584c94e22786f1c9b33df258a1912
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  4 Jun 2014 20:11:23 +0700

[yahoo] Make thumbnail optional (Closes #3043)

Diffstat:
Myoutube_dl/extractor/yahoo.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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'), }