Browse Source

[YoutubeDL] Fix PEP8 W503

totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
3749e36e9f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      youtube_dl/YoutubeDL.py

+ 3
- 3
youtube_dl/YoutubeDL.py View File

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


Loading…
Cancel
Save