Skip to content

Commit

Permalink
[pokemon] PEP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Feb 8, 2018
1 parent 382b818 commit 4fac463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _real_extract(self, url):
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',
Expand Down

0 comments on commit 4fac463

Please sign in to comment.