From: Philipp Hagemeister Date: Fri, 30 May 2014 02:59:18 +0000 (+0200) Subject: [ard] Fix title (#3006) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=0f97c9a06f3c4f9eca0859b93809308fadf1d1b0;p=youtube-dl [ard] Fix title (#3006) --- diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index b88f71bc4..a87b32b22 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -38,7 +38,9 @@ class ARDIE(InfoExtractor): webpage = self._download_webpage(url, video_id) title = self._html_search_regex( - r'(.*?)', webpage, 'title') + [r'(.*?)', + r'

(.*?)

'], + webpage, 'title') description = self._html_search_meta( 'dcterms.abstract', webpage, 'description') thumbnail = self._og_search_thumbnail(webpage)