[fktv] Correct spellings
authorYen Chi Hsuan <yan12125@gmail.com>
Fri, 25 Sep 2015 09:24:35 +0000 (17:24 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Fri, 25 Sep 2015 09:24:35 +0000 (17:24 +0800)
youtube_dl/extractor/fktv.py

index c2aa23aa28f7c257d697ee2567f3b64848dfbcb8..93c4fd641b34a77383eb87abc8b9f6f469252704 100644 (file)
@@ -28,9 +28,9 @@ class FKTVIE(InfoExtractor):
 
         webpage = self._download_webpage('http://fernsehkritik.tv/folge-%s/play' % episode, episode)
         title = clean_html(self._html_search_regex('<h3>([^<]+?)</h3>', webpage, 'title'))
-        matchs = re.search(r'(?s)<video[^>]*poster="([^"]+)"[^>]*>(.*?)</video>', webpage)
-        if matchs:
-            poster, sources = matchs.groups()
+        matches = re.search(r'(?s)<video[^>]*poster="([^"]+)"[^>]*>(.*?)</video>', webpage)
+        if matches:
+            poster, sources = matches.groups()
             urls = re.findall(r'(?s)<source[^>]*src="([^"]+)"[^>]*>', sources)
             if sources:
                 formats = [{'url': url, 'format_id': determine_ext(url)} for url in urls]