[youtube] Fix typo

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-05-15 13:43:29 +02:00
parent ad3bc6acd5
commit 01ed5c9be3
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
m_cat_container = get_element_by_id("eow-category", video_webpage)
if m_cat_container:
category = self._html_search_regex(
r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'cateory',
r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'category',
default=None)
video_categories = None if category is None else [category]
else: