summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-12-26 13:19:08 +0100
committerJose <jose@zeroc.com>2016-12-26 13:19:08 +0100
commit66f1d2a224a6ac5bc0e3b650b14c5dae607e0630 (patch)
tree63082bb34018fc78cfeded785cdb9bd399e55939 /scripts/Util.py
parentFixed (ICE-7443) - Remove mono leftovers (diff)
downloadice-66f1d2a224a6ac5bc0e3b650b14c5dae607e0630.tar.bz2
ice-66f1d2a224a6ac5bc0e3b650b14c5dae607e0630.tar.xz
ice-66f1d2a224a6ac5bc0e3b650b14c5dae607e0630.zip
Fixed (ICE-6974) - Test suite and Python installed in C:\Program Files
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)