1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-23 17:33:11 +08:00

Fix for CBSLocal extractor

This commit is contained in:
Hier631 2017-12-15 18:46:26 +01:00 committed by GitHub
parent 498a8a4ca5
commit 69fc2b68d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,8 @@ class CBSLocalIE(AnvatoIE):
info_dict = self._extract_anvato_videos(webpage, display_id)
time_str = self._html_search_regex(
r'class="entry-date">([^<]+)<', webpage, 'released date', default=None)
r'class="post-date">([^<]+)<', webpage, 'released date', default=None)
time_str = time_str.replace(' at ', ' ')
if time_str:
timestamp = unified_timestamp(time_str)
else: