From f8aa165db0e0c9c60c436d6e9271a9258e18e515 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Thu, 16 Feb 2017 12:35:38 -0600 Subject: [PATCH] Surround executable in quotes. --- pymbolic/interop/maxima.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymbolic/interop/maxima.py b/pymbolic/interop/maxima.py index 6ca16f3..1486ff7 100644 --- a/pymbolic/interop/maxima.py +++ b/pymbolic/interop/maxima.py @@ -296,7 +296,7 @@ class MaximaKernel: # }}} self.child.sendline(" ".join( - [self.executable, "--disable-readline", "-q"])) + ['"' + self.executable + '"', "--disable-readline", "-q"])) self.current_prompt = 0 self._expect_prompt(IN_PROMPT_RE) -- GitLab