about summary refs log tree commit diff
path: root/youtube_dl/extractor/rtvnh.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-13 01:00:25 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-13 01:00:25 +0600
commitf196047832a2da74d5adf75759877b5d95ec5b5b (patch)
tree5f52dd5b3eff48db9b2d744e7bf91349ffaa0e6c /youtube_dl/extractor/rtvnh.py
parent240ca32e57a027ff8cec8617c154bb7100bead1a (diff)
downloadyoutube-dl-f196047832a2da74d5adf75759877b5d95ec5b5b.tar.gz
youtube-dl-f196047832a2da74d5adf75759877b5d95ec5b5b.tar.xz
youtube-dl-f196047832a2da74d5adf75759877b5d95ec5b5b.zip
[rtvnh] Make thumbnail optional
Diffstat (limited to 'youtube_dl/extractor/rtvnh.py')
-rw-r--r--youtube_dl/extractor/rtvnh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtvnh.py b/youtube_dl/extractor/rtvnh.py
index 998a3c53d..d576a3410 100644
--- a/youtube_dl/extractor/rtvnh.py
+++ b/youtube_dl/extractor/rtvnh.py
@@ -35,6 +35,6 @@ class RTVNHIE(InfoExtractor):
         return {
             'id': video_id,
             'title': meta['title'].strip(),
-            'thumbnail': meta['image'],
+            'thumbnail': meta.get('image'),
             'formats': formats
         }