about summary refs log tree commit diff
path: root/youtube_dl/extractor/tf1.py
diff options
context:
space:
mode:
authorJouke Waleson <jouke.waleson@mendix.com>2014-11-23 21:39:15 +0100
committerJouke Waleson <jouke.waleson@mendix.com>2014-11-23 21:39:15 +0100
commit9e1a5b845586a0a5431fb72467142046d8571e6f (patch)
treef8a176e249aedef136f6bc8e21bd75a42496f24f /youtube_dl/extractor/tf1.py
parent2514d2635e0c8ff0fb72d00a093a849001df2bdd (diff)
downloadyoutube-dl-9e1a5b845586a0a5431fb72467142046d8571e6f.tar.gz
youtube-dl-9e1a5b845586a0a5431fb72467142046d8571e6f.tar.xz
youtube-dl-9e1a5b845586a0a5431fb72467142046d8571e6f.zip
PEP8: applied even more rules
Diffstat (limited to 'youtube_dl/extractor/tf1.py')
-rw-r--r--youtube_dl/extractor/tf1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py
index fdae17b1b..6e61cc9e2 100644
--- a/youtube_dl/extractor/tf1.py
+++ b/youtube_dl/extractor/tf1.py
@@ -30,7 +30,7 @@ class TF1IE(InfoExtractor):
         embed_url = self._html_search_regex(
             r'"(https://www.wat.tv/embedframe/.*?)"', webpage, 'embed url')
         embed_page = self._download_webpage(embed_url, video_id,
-            'Downloading embed player page')
+                                            'Downloading embed player page')
         wat_id = self._search_regex(r'UVID=(.*?)&', embed_page, 'wat id')
         wat_info = self._download_json(
             'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)