Browse Source

[ccc] Fix upload date extraction

totalwebcasting
Sergey M․ 9 years ago
parent
commit
c9154514c4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/ccc.py

+ 1
- 1
youtube_dl/extractor/ccc.py View File

@ -46,7 +46,7 @@ class CCCIE(InfoExtractor):
r"(?s)<p class='description'>(.*?)</p>",
webpage, 'description', fatal=False)
upload_date = unified_strdate(self._html_search_regex(
r"(?s)<span class='[^']*fa-calendar-o'></span>(.*?)</li>",
r"(?s)<span[^>]+class='[^']*fa-calendar-o'[^>]*>(.+?)</span>",
webpage, 'upload date', fatal=False))
view_count = int_or_none(self._html_search_regex(
r"(?s)<span class='[^']*fa-eye'></span>(.*?)</li>",


Loading…
Cancel
Save