diff options
author | Remita Amine <remitamine@gmail.com> | 2017-05-24 09:44:41 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2017-05-24 09:44:41 +0100 |
commit | 884d09f3304992837be140e1e22ff44a87cbf6ff (patch) | |
tree | cca17314a4e1273849f20e6bb7b98bffcbab4b56 /youtube_dl/extractor | |
parent | 9e35298f973b25c513e30bbc1fe2a05a1c6b7fab (diff) |
[cbsnews] fix extraction for 60 Minutes videos
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/cbsnews.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cbsnews.py b/youtube_dl/extractor/cbsnews.py index 17bb9af4f..651ae2665 100644 --- a/youtube_dl/extractor/cbsnews.py +++ b/youtube_dl/extractor/cbsnews.py @@ -65,7 +65,7 @@ class CBSNewsIE(CBSIE): item = video_info['item'] if 'item' in video_info else video_info guid = item['mpxRefId'] - return self._extract_video_info(guid) + return self._extract_video_info(guid, 'cbsnews') class CBSNewsLiveVideoIE(InfoExtractor): |