Browse Source

[bigflix] Use correct indentation to make flake8 happy

Jaime Marquínez Ferrándiz 9 years ago
parent
commit
7e8a800f29
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/bigflix.py

+ 1 - 1
youtube_dl/extractor/bigflix.py

@@ -53,7 +53,7 @@ class BigflixIE(InfoExtractor):
 
 
         formats = []
         formats = []
         for height, encoded_url in re.findall(
         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)
             video_url = decode_url(encoded_url)
             f = {
             f = {
                 'url': video_url,
                 'url': video_url,