mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-26 04:02:11 +00:00
Style fixes in YoutubeDL.py
Fixed some of the problems reported by pep8
This commit is contained in:
parent
12893efe01
commit
fe7e0c9825
1 changed files with 29 additions and 29 deletions
|
@ -278,7 +278,7 @@ class YoutubeDL(object):
|
||||||
sanitize = lambda k, v: sanitize_filename(
|
sanitize = lambda k, v: sanitize_filename(
|
||||||
u'NA' if v is None else compat_str(v),
|
u'NA' if v is None else compat_str(v),
|
||||||
restricted=self.params.get('restrictfilenames'),
|
restricted=self.params.get('restrictfilenames'),
|
||||||
is_id=(k==u'id'))
|
is_id=k == u'id')
|
||||||
template_dict = dict((k, sanitize(k, v)) for k, v in template_dict.items())
|
template_dict = dict((k, sanitize(k, v)) for k, v in template_dict.items())
|
||||||
|
|
||||||
filename = self.params['outtmpl'] % template_dict
|
filename = self.params['outtmpl'] % template_dict
|
||||||
|
|
Loading…
Reference in a new issue