From 35a67edb29c82d67cb08983f3c1361ba2056efd2 Mon Sep 17 00:00:00 2001 From: j-emils <83228835+j-emils@users.noreply.github.com> Date: Tue, 7 May 2024 10:17:35 +0200 Subject: [PATCH] Changed to use list instead of string for subprocess command. (#214) --- OMPython/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/OMPython/__init__.py b/OMPython/__init__.py index 72efb31..f2d1b42 100755 --- a/OMPython/__init__.py +++ b/OMPython/__init__.py @@ -1280,6 +1280,7 @@ def simulate(self, resultfile=None, simflags=None, verbose=True): # 11 currentDir = os.getcwd() if (os.path.exists(getExeFile)): cmd = getExeFile + override + csvinput + r + simflags + cmd = cmd.split(" ") #print(cmd) os.chdir(self.tempdir) if (platform.system() == "Windows"):