Skip to content

Commit e4040b3

Browse files
committed
Fix vevnv command quoting
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 4ae443b commit e4040b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def create_virtualenv(std_python, root_dir, tpp_dirs, quiet=False):
194194
for tpd in tpp_dirs:
195195
venv = os.path.join(root_dir, tpd, 'virtualenv.py')
196196
if os.path.exists(venv):
197-
venv_py = ''' + venv + '''
197+
venv_py = '"' + venv + '"'
198198
break
199199

200200
# error out if venv_py not found

0 commit comments

Comments
 (0)