Browse Source

[cbsnews] fix extraction for 60 Minutes videos

master-ytdl-org
Remita Amine 7 years ago
parent
commit
884d09f330
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/cbsnews.py

+ 1
- 1
youtube_dl/extractor/cbsnews.py View File

@ -65,7 +65,7 @@ class CBSNewsIE(CBSIE):
item = video_info['item'] if 'item' in video_info else video_info item = video_info['item'] if 'item' in video_info else video_info
guid = item['mpxRefId'] guid = item['mpxRefId']
return self._extract_video_info(guid)
return self._extract_video_info(guid, 'cbsnews')
class CBSNewsLiveVideoIE(InfoExtractor): class CBSNewsLiveVideoIE(InfoExtractor):


Loading…
Cancel
Save