From: Jaime Marquínez Ferrándiz Date: Sun, 10 Jan 2016 13:26:27 +0000 (+0100) Subject: [bigflix] Use correct indentation to make flake8 happy X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=7e8a800f29d52cbc6057638595df05ac69f622bb [bigflix] Use correct indentation to make flake8 happy --- diff --git a/youtube_dl/extractor/bigflix.py b/youtube_dl/extractor/bigflix.py index 24720de86..33762ad93 100644 --- a/youtube_dl/extractor/bigflix.py +++ b/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,