Browse Source

[rtvnh] Make thumbnail optional

master
Sergey M․ 9 years ago
parent
commit
f196047832
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/extractor/rtvnh.py

2
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
}
Loading…
Cancel
Save