1
0
mirror of https://source.netsyms.com/Mirrors/youtube-dl synced 2026-05-13 03:17:03 +00:00

Fix PEP8 issue E713

This commit is contained in:
Jaime Marquínez Ferrándiz
2014-12-09 23:11:26 +01:00
parent b89a938687
commit 83e865a370
4 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ class ExecAfterDownloadPP(PostProcessor):
def run(self, information):
cmd = self.exec_cmd
if not '{}' in cmd:
if '{}' not in cmd:
cmd += ' {}'
cmd = cmd.replace('{}', shlex_quote(information['filepath']))