summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-12 01:54:56 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-12 01:54:56 +0600
commitd4b963d0a68f81f4fef5495af14e2e41add21a0f (patch)
treefb0d37b81c1318c083d2e7198f60e2a95406bc18
parent6d3f5935e516760964052718e6b90324c6f07391 (diff)
downloadyoutube-dl-d4b963d0a68f81f4fef5495af14e2e41add21a0f.tar.gz
youtube-dl-d4b963d0a68f81f4fef5495af14e2e41add21a0f.tar.xz
youtube-dl-d4b963d0a68f81f4fef5495af14e2e41add21a0f.zip
[vine] Relax `alt_title` (Closes #5677)
-rw-r--r--youtube_dl/extractor/vine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py
index 65c459fad..c733a48fa 100644
--- 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']),