1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-10 13:59:37 +00:00

[kickstarter] Silent the warning for og:description

Closes #10415
This commit is contained in:
Yen Chi Hsuan 2016-08-25 01:29:32 +08:00
parent 0c75abbb7b
commit 08773689f3

View file

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