diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 06:27:48 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 06:27:48 +0100 |
commit | f3682997d7a709e7cf74ba83773570d2a99beb12 (patch) | |
tree | 9e14e70dfea76583a593468c366b5bc818215af5 /youtube_dl/extractor/jeuxvideo.py | |
parent | cc13cc0251b287ac88883096fcc36a8072e7ab5d (diff) |
Clean up unused imports and other minor mistakes
Diffstat (limited to 'youtube_dl/extractor/jeuxvideo.py')
-rw-r--r-- | youtube_dl/extractor/jeuxvideo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/jeuxvideo.py b/youtube_dl/extractor/jeuxvideo.py index 6bb54b932..0020c47cf 100644 --- a/youtube_dl/extractor/jeuxvideo.py +++ b/youtube_dl/extractor/jeuxvideo.py @@ -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=(.*?)" />', |