From 9131bde941c49482affe9b10dd26eb187e073b79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Tue, 4 Jun 2013 19:31:06 +0200 Subject: [PATCH] SpiegelE: the page layout has changed a bit --- youtube_dl/InfoExtractors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index c24577cb7..37f9c1449 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3980,7 +3980,7 @@ class SpiegelIE(InfoExtractor): video_id = m.group('videoID') webpage = self._download_webpage(url, video_id) - m = re.search(r'
(.*?)
', webpage) + m = re.search(r'
(.*?)
', webpage) if not m: raise ExtractorError(u'Cannot find title') video_title = unescapeHTML(m.group(1))