[slideshare] Fix description extraction
authorSergey M․ <dstftw@gmail.com>
Mon, 1 Dec 2014 14:18:42 +0000 (20:18 +0600)
committerSergey M․ <dstftw@gmail.com>
Mon, 1 Dec 2014 14:18:42 +0000 (20:18 +0600)
youtube_dl/extractor/slideshare.py

index 53c3c9220374737b88dc516ec810ecb6865b74f7..5864b9936cca2e4d0ba3a0fa217884c21f897ed7 100644 (file)
@@ -39,7 +39,7 @@ class SlideshareIE(InfoExtractor):
         ext = info['jsplayer']['video_extension']
         video_url = compat_urlparse.urljoin(bucket, doc + '-SD.' + ext)
         description = self._html_search_regex(
-            r'<p\s+(?:style="[^"]*"\s+)?class="description.*?"[^>]*>(.*?)</p>', webpage,
+            r'<p\s+(?:style="[^"]*"\s+)?class=".*?description.*?"[^>]*>(.*?)</p>', webpage,
             'description', fatal=False)
 
         return {