From a9fbcea46e0d5b73499c44b6a045f5354bc804f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sluka?= Date: Sun, 6 Apr 2025 18:50:14 +0200 Subject: [PATCH] Fix linearize() simflags must start with space --- OMPython/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OMPython/__init__.py b/OMPython/__init__.py index e31f377ab..b8434fc7d 100644 --- a/OMPython/__init__.py +++ b/OMPython/__init__.py @@ -1651,6 +1651,8 @@ def linearize(self, lintime=None, simflags=None): # 22 if simflags is None: simflags = "" + else: + simflags = " " + simflags if (os.path.exists(getExeFile)): cmd = getExeFile + linruntime + override + csvinput + simflags