diff options
author | Jouke Waleson <jouke.waleson@mendix.com> | 2014-11-23 21:39:15 +0100 |
---|---|---|
committer | Jouke Waleson <jouke.waleson@mendix.com> | 2014-11-23 21:39:15 +0100 |
commit | 9e1a5b845586a0a5431fb72467142046d8571e6f (patch) | |
tree | f8a176e249aedef136f6bc8e21bd75a42496f24f /youtube_dl/extractor/metacritic.py | |
parent | 2514d2635e0c8ff0fb72d00a093a849001df2bdd (diff) |
PEP8: applied even more rules
Diffstat (limited to 'youtube_dl/extractor/metacritic.py')
-rw-r--r-- | youtube_dl/extractor/metacritic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/metacritic.py b/youtube_dl/extractor/metacritic.py index 07f072924..e30320569 100644 --- a/youtube_dl/extractor/metacritic.py +++ b/youtube_dl/extractor/metacritic.py @@ -28,7 +28,7 @@ class MetacriticIE(InfoExtractor): webpage = self._download_webpage(url, video_id) # The xml is not well formatted, there are raw '&' info = self._download_xml('http://www.metacritic.com/video_data?video=' + video_id, - video_id, 'Downloading info xml', transform_source=fix_xml_ampersands) + video_id, 'Downloading info xml', transform_source=fix_xml_ampersands) clip = next(c for c in info.findall('playList/clip') if c.find('id').text == video_id) formats = [] @@ -44,7 +44,7 @@ class MetacriticIE(InfoExtractor): self._sort_formats(formats) description = self._html_search_regex(r'<b>Description:</b>(.*?)</p>', - webpage, 'description', flags=re.DOTALL) + webpage, 'description', flags=re.DOTALL) return { 'id': video_id, |