diff options
author | Jose <jose@zeroc.com> | 2016-12-26 13:19:08 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-12-26 13:19:08 +0100 |
commit | 66f1d2a224a6ac5bc0e3b650b14c5dae607e0630 (patch) | |
tree | 63082bb34018fc78cfeded785cdb9bd399e55939 /scripts/Util.py | |
parent | Fixed (ICE-7443) - Remove mono leftovers (diff) | |
download | ice-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.py | 2 |
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) |