Browse Source

[cnet] Fix title extraction

URLs are still missing
Philipp Hagemeister 11 years ago
parent
commit
6f5342a201
1 changed files with 5 additions and 1 deletions
  1. 5 1
      youtube_dl/extractor/cnet.py

+ 5 - 1
youtube_dl/extractor/cnet.py

@@ -43,7 +43,11 @@ class CNETIE(InfoExtractor):
             raise ExtractorError('Cannot find video data')
             raise ExtractorError('Cannot find video data')
 
 
         video_id = vdata['id']
         video_id = vdata['id']
-        title = vdata['headline']
+        title = vdata.get('headline')
+        if title is None:
+            title = vdata.get('title')
+        if title is None:
+            raise ExtractorError('Cannot find title!')
         description = vdata.get('dek')
         description = vdata.get('dek')
         thumbnail = vdata.get('image', {}).get('path')
         thumbnail = vdata.get('image', {}).get('path')
         author = vdata.get('author')
         author = vdata.get('author')