diff options
author | dst <dstftw@gmail.com> | 2014-02-02 12:03:55 +0700 |
---|---|---|
committer | dst <dstftw@gmail.com> | 2014-02-02 12:03:55 +0700 |
commit | f46359121fc9a635c0fb058c37d51ce71e3d78a2 (patch) | |
tree | f27b76e792ff058ca0e48c3f7bdc56a097a2ff82 /youtube_dl/extractor | |
parent | 37c1525c172034c6b0836c6c71b077ef2c3dca7f (diff) |
[vube] Make video description optional as it may be missing
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/vube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vube.py b/youtube_dl/extractor/vube.py index 101ded590..2aaa4e722 100644 --- a/youtube_dl/extractor/vube.py +++ b/youtube_dl/extractor/vube.py @@ -45,7 +45,7 @@ class VubeIE(InfoExtractor): self._sort_formats(formats) title = video['title'] - description = video['description'] + description = video.get('description') thumbnail = video['thumbnail_src'] if thumbnail.startswith('//'): thumbnail = 'http:' + thumbnail |