Browse Source

[kickstarter] Silent the warning for og:description

Closes #10415
Yen Chi Hsuan 9 years ago
parent
commit
08773689f3
1 changed files with 1 additions and 2 deletions
  1. 1 2
      youtube_dl/extractor/kickstarter.py

+ 1 - 2
youtube_dl/extractor/kickstarter.py

@@ -37,7 +37,6 @@ class KickStarterIE(InfoExtractor):
             'ext': 'mp4',
             'title': 'Power Drive 2000',
         },
-        'expected_warnings': ['OpenGraph description'],
     }]
 
     def _real_extract(self, url):
@@ -67,6 +66,6 @@ class KickStarterIE(InfoExtractor):
             'id': video_id,
             'url': video_url,
             'title': title,
-            'description': self._og_search_description(webpage),
+            'description': self._og_search_description(webpage, default=None),
             'thumbnail': thumbnail,
         }