Clean up unused imports and other minor mistakes
This commit is contained in:
parent
cc13cc0251
commit
f3682997d7
16 changed files with 5 additions and 21 deletions
|
@ -22,7 +22,7 @@ class JeuxVideoIE(InfoExtractor):
|
|||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
title = re.match(self._VALID_URL, url).group(1)
|
||||
title = mobj.group(1)
|
||||
webpage = self._download_webpage(url, title)
|
||||
xml_link = self._html_search_regex(
|
||||
r'<param name="flashvars" value="config=(.*?)" />',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue