diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-09-25 17:24:35 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-09-25 17:24:35 +0800 |
commit | 2e40a12225fbe64b84b3975b3063a676df0f4522 (patch) | |
tree | 9564effd8d640d929e4e1086ea7e0b4855d1285e /youtube_dl | |
parent | dade7245af16c4167575bb3759e7e64011602043 (diff) |
[fktv] Correct spellings
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/fktv.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/fktv.py b/youtube_dl/extractor/fktv.py index c2aa23aa2..93c4fd641 100644 --- a/youtube_dl/extractor/fktv.py +++ b/youtube_dl/extractor/fktv.py @@ -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] |