From: Sergey M․ Date: Thu, 7 Jan 2016 18:52:55 +0000 (+0600) Subject: [youtube] Support expanding alternative format of links in description (Closes #8164) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=23f13e97548cc4ff3d11408ee5bc77f682e642dc;p=youtube-dl [youtube] Support expanding alternative format of links in description (Closes #8164) --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 4aac2cc03..897641e42 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1235,10 +1235,10 @@ class YoutubeIE(YoutubeBaseInfoExtractor): video_description = re.sub(r'''(?x) - [^<]+ + class="(?:yt-uix-redirect-link|yt-uix-sessionlink[^"]*)".*?> + [^<]+\.{3}\s* ''', r'\1', video_description) video_description = clean_html(video_description)