소스 검색

[bigflix] Use correct indentation to make flake8 happy

Jaime Marquínez Ferrándiz 10 년 전
부모
커밋
7e8a800f29
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      youtube_dl/extractor/bigflix.py

+ 1 - 1
youtube_dl/extractor/bigflix.py

@@ -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,