Skip to content

Commit b0af7d4

Browse files
Allow whitespace in a path to the Python interpreter
1 parent e2707e0 commit b0af7d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
USE_TAR = False
8484
USE_UNZIP = False
8585

86-
TOOL_COMMAND_PYTHON = sys.executable
86+
TOOL_COMMAND_PYTHON = sys.executable if not " " in sys.executable else '"{}"'.format(sys.executable)
8787
TOOL_COMMAND_GIT = "git"
8888
TOOL_COMMAND_HG = "hg"
8989
TOOL_COMMAND_SVN = "svn"

0 commit comments

Comments
 (0)