youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c9154514c495bd2259df2250d4cf72a2564a9136
parent 0d5095fc65d92251f7aeefd9cb504434590cee8b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  1 Jan 2016 15:22:22 +0600

[ccc] Fix upload date extraction

Diffstat:
Myoutube_dl/extractor/ccc.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/ccc.py b/youtube_dl/extractor/ccc.py @@ -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>",