diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-01-10 14:26:27 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-01-10 14:26:27 +0100 |
commit | 7e8a800f29d52cbc6057638595df05ac69f622bb (patch) | |
tree | eae504973f227b573270d960335c0c9483bda215 /youtube_dl/extractor/bigflix.py | |
parent | 2334762b03dec5da4d6788539e3e11192eb97010 (diff) |
[bigflix] Use correct indentation to make flake8 happy
Diffstat (limited to 'youtube_dl/extractor/bigflix.py')
-rw-r--r-- | youtube_dl/extractor/bigflix.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |