diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-05-13 21:16:45 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-05-13 21:16:45 +0800 |
commit | 3749e36e9f0e6be2a3a3ab1b15c0c02be5a50e2f (patch) | |
tree | 605ca1f4aca8afa8cbda712cf83442812d648aa1 /youtube_dl/YoutubeDL.py | |
parent | c1c924abfeda45f29b991bb74f315f0e79dcf126 (diff) |
[YoutubeDL] Fix PEP8 W503
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 4cf83c510..84d50dab7 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1085,9 +1085,9 @@ class YoutubeDL(object): req_format = self.params.get('format') if req_format is None: req_format_list = [] - if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-' - and info_dict['extractor'] in ['youtube', 'ted'] - and FFmpegMergerPP(self).available): + if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-' and + info_dict['extractor'] in ['youtube', 'ted'] and + FFmpegMergerPP(self).available): req_format_list.append('bestvideo+bestaudio') req_format_list.append('best') req_format = '/'.join(req_format_list) |