about summary refs log tree commit diff
path: root/youtube_dl/extractor/pokemon.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-02-08 23:04:20 +0700
committerSergey M․ <dstftw@gmail.com>2018-02-08 23:04:20 +0700
commit4fac463d70536fd4197aa510c100188d8cec0635 (patch)
tree529cf463f9c34489e683b7b6db6895f5716ea82a /youtube_dl/extractor/pokemon.py
parent382b8182ce5004cf82166647e98ced0314b65850 (diff)
downloadyoutube-dl-4fac463d70536fd4197aa510c100188d8cec0635.tar.gz
youtube-dl-4fac463d70536fd4197aa510c100188d8cec0635.tar.xz
youtube-dl-4fac463d70536fd4197aa510c100188d8cec0635.zip
[pokemon] PEP 8
Diffstat (limited to 'youtube_dl/extractor/pokemon.py')
-rw-r--r--youtube_dl/extractor/pokemon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pokemon.py b/youtube_dl/extractor/pokemon.py
index 4ff617163..dd5f17f11 100644
--- a/youtube_dl/extractor/pokemon.py
+++ b/youtube_dl/extractor/pokemon.py
@@ -58,7 +58,7 @@ class PokemonIE(InfoExtractor):
             webpage, 'video data element'))
         video_id = video_data['data-video-id']
         title = video_data.get('data-video-title') or self._html_search_meta(
-            'pkm-title', webpage,' title', default=None) or self._search_regex(
+            'pkm-title', webpage, ' title', default=None) or self._search_regex(
             r'<h1[^>]+\bclass=["\']us-title[^>]+>([^<]+)', webpage, 'title')
         return {
             '_type': 'url_transparent',