youtube-dl

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

commit c83a352227401d7ca7eac045b58043ed576c0cdc
parent e9063b5de9a1118842185768f5e615b76ec8692c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 25 Apr 2016 00:26:06 +0600

[openload] Make thumbnail optional

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

diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py @@ -122,6 +122,6 @@ class OpenloadIE(InfoExtractor): 'id': video_id, 'title': title, 'ext': ext, - 'thumbnail': self._og_search_thumbnail(webpage), + 'thumbnail': self._og_search_thumbnail(webpage, default=None), 'url': video_url, }