diff options
| -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          }  | 
