youtube-dl

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

commit d69abbd3f04b5f3fced2c6a53b4fce788e31906d
parent 1d00a8823e930bfb092c65ec65aa37e32a1ecf5a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 22 Feb 2016 03:13:18 +0600

[googledrive] Make thumbnail optional (Closes #8629)

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

diff --git a/youtube_dl/extractor/googledrive.py b/youtube_dl/extractor/googledrive.py @@ -82,7 +82,7 @@ class GoogleDriveIE(InfoExtractor): return { 'id': video_id, 'title': title, - 'thumbnail': self._og_search_thumbnail(webpage), + 'thumbnail': self._og_search_thumbnail(webpage, default=None), 'duration': duration, 'formats': formats, }