diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-04-30 20:18:42 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-04-30 20:18:42 +0200 |
commit | df8301fef55f9144f06337c10b8570b6560caa24 (patch) | |
tree | a3a33afeeb2ddaf61d91af4fb20b8a15a428ddaf /youtube_dl/YoutubeDL.py | |
parent | 4070b458ece46a29dad9be2312a7daa48bb2f1d7 (diff) |
[YoutubeDL] pep8: use 'k not in' instead of 'not k in'
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index e747c6892..584dbf8a6 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1339,7 +1339,7 @@ class YoutubeDL(object): self.to_screen('[info] Writing video description metadata as JSON to: ' + infofn) filtered_info_dict = dict( (k, v) for k, v in info_dict.items() - if not k in ['requested_formats', 'requested_subtitles']) + if k not in ['requested_formats', 'requested_subtitles']) try: write_json_file(filtered_info_dict, infofn) except (OSError, IOError): |