summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-01-01 15:29:42 +0600
committerSergey M․ <dstftw@gmail.com>2016-01-01 15:29:42 +0600
commit8499d211583f3534c0d0e0f086d471c52ac6c803 (patch)
tree7e3e8409601fab9a513a1713b84db4b6be61d324
parentc9154514c495bd2259df2250d4cf72a2564a9136 (diff)
downloadyoutube-dl-8499d211583f3534c0d0e0f086d471c52ac6c803.tar.gz
youtube-dl-8499d211583f3534c0d0e0f086d471c52ac6c803.tar.xz
youtube-dl-8499d211583f3534c0d0e0f086d471c52ac6c803.zip
[ccc] Fix description extraction and update test
-rw-r--r--youtube_dl/extractor/ccc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/ccc.py b/youtube_dl/extractor/ccc.py
index 5b549b343..45115c838 100644
--- a/youtube_dl/extractor/ccc.py
+++ b/youtube_dl/extractor/ccc.py
@@ -21,10 +21,10 @@ class CCCIE(InfoExtractor):
             'id': '30C3_-_5443_-_en_-_saal_g_-_201312281830_-_introduction_to_processor_design_-_byterazor',
             'ext': 'mp4',
             'title': 'Introduction to Processor Design',
-            'description': 'md5:5ddbf8c734800267f2cee4eab187bc1b',
+            'description': 'md5:80be298773966f66d56cb11260b879af',
             'thumbnail': 're:^https?://.*\.jpg$',
             'view_count': int,
-            'upload_date': '20131229',
+            'upload_date': '20131228',
         }
     }, {
         'url': 'https://media.ccc.de/v/32c3-7368-shopshifting#download',
@@ -43,7 +43,7 @@ class CCCIE(InfoExtractor):
         title = self._html_search_regex(
             r'(?s)<h1>(.*?)</h1>', webpage, 'title')
         description = self._html_search_regex(
-            r"(?s)<p class='description'>(.*?)</p>",
+            r"(?s)<h3>About</h3>(.+?)<h3>",
             webpage, 'description', fatal=False)
         upload_date = unified_strdate(self._html_search_regex(
             r"(?s)<span[^>]+class='[^']*fa-calendar-o'[^>]*>(.+?)</span>",