1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-01 04:00:04 +08:00

Fix for CBSLocal extractor

This commit is contained in:
Hier631
2017-12-15 18:46:26 +01:00
committed by GitHub
Unverified
parent 498a8a4ca5
commit 69fc2b68d8
+2 -1
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: