Skip to content

Commit

Permalink
Merge pull request #5507 from mconst/master
Browse files Browse the repository at this point in the history
Avoid race condition when displaying images with eog
  • Loading branch information
radarhere committed May 25, 2021
2 parents affa059 + 5c8aa27 commit 10d8800
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PIL/ImageShow.py
Expand Up @@ -207,7 +207,8 @@ class EogViewer(UnixViewer):
"""The GNOME Image Viewer ``eog`` command."""

def get_command_ex(self, file, **options):
command = executable = "eog"
executable = "eog"
command = "eog -n"
return command, executable


Expand Down

0 comments on commit 10d8800

Please sign in to comment.