youtube-dl

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

commit d4b963d0a68f81f4fef5495af14e2e41add21a0f
parent 6d3f5935e516760964052718e6b90324c6f07391
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 12 May 2015 01:54:56 +0600

[vine] Relax `alt_title` (Closes #5677)

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

diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py @@ -75,7 +75,7 @@ class VineIE(InfoExtractor): return { 'id': video_id, 'title': self._og_search_title(webpage), - 'alt_title': self._og_search_description(webpage), + 'alt_title': self._og_search_description(webpage, default=None), 'description': data['description'], 'thumbnail': data['thumbnailUrl'], 'upload_date': unified_strdate(data['created']),