diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-08-13 01:00:25 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-08-13 01:00:25 +0600 | 
| commit | f196047832a2da74d5adf75759877b5d95ec5b5b (patch) | |
| tree | 5f52dd5b3eff48db9b2d744e7bf91349ffaa0e6c | |
| parent | 240ca32e57a027ff8cec8617c154bb7100bead1a (diff) | |
[rtvnh] Make thumbnail optional
| -rw-r--r-- | youtube_dl/extractor/rtvnh.py | 2 | 
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          }  | 
