Merge pull request #7987 from radarhere/imageshow

Corrected ImageShow UnixViewer command
This commit is contained in:
Hugo van Kemenade 2024-04-17 11:31:22 +03:00 committed by GitHub
commit b3749e40c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -199,7 +199,7 @@ class UnixViewer(Viewer):
def get_command(self, file: str, **options: Any) -> str:
command = self.get_command_ex(file, **options)[0]
return f"({command} {quote(file)}"
return f"{command} {quote(file)}"
class XDGViewer(UnixViewer):