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']))