Browse Source

SpiegelE: the page layout has changed a bit

master
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
9131bde941
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/InfoExtractors.py

2
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'<div class="spVideoTitle">(.*?)</div>', webpage)
m = re.search(r'<div class="module-title">(.*?)</div>', webpage)
if not m:
raise ExtractorError(u'Cannot find title')
video_title = unescapeHTML(m.group(1))

Loading…
Cancel
Save