[bigflix] Use correct indentation to make flake8 happy
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sun, 10 Jan 2016 13:26:27 +0000 (14:26 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sun, 10 Jan 2016 13:26:27 +0000 (14:26 +0100)
youtube_dl/extractor/bigflix.py

index 24720de86521b0e316aba284b274d3e1247d1665..33762ad93eae6f7b204cd00c11058f60c621bf50 100644 (file)
@@ -53,7 +53,7 @@ class BigflixIE(InfoExtractor):
 
         formats = []
         for height, encoded_url in re.findall(
-            r'ContentURL_(\d{3,4})[pP][^=]+=([^&]+)', webpage):
+                r'ContentURL_(\d{3,4})[pP][^=]+=([^&]+)', webpage):
             video_url = decode_url(encoded_url)
             f = {
                 'url': video_url,