summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 9eb83c51790..4942ee560e4 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -2638,7 +2638,7 @@ class PythonMapping(CppBasedMapping):
mappingDesc = "Python"
def getCommandLine(self, current, process, exe):
- return sys.executable + " " + exe
+ return "\"{0}\" {1}".format(sys.executable, exe)
def getEnv(self, process, current):
env = CppBasedMapping.getEnv(self, process, current)