Skip to content

Commit

Permalink
Cleaned up strings (#4024)
Browse files Browse the repository at this point in the history
Cleaned up strings
  • Loading branch information
hugovk committed Aug 15, 2019
2 parents 03452d1 + 108512e commit 6684622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PIL/ImageShow.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def show_file(self, file, **options):
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
Expand Down

0 comments on commit 6684622

Please sign in to comment.