Cleaned up strings (#4024)

Cleaned up strings
This commit is contained in:
Hugo van Kemenade 2019-08-15 15:50:14 +03:00 committed by GitHub
commit 6684622c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ else:
with open(path, "r") as f:
command = self.get_command_ex(file, **options)[0]
subprocess.Popen(
["im=$(cat);" + command + " $im;" "rm -f $im"], shell=True, stdin=f
["im=$(cat);" + command + " $im; rm -f $im"], shell=True, stdin=f
)
os.remove(path)
return 1