Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18cc2bd commit e8e7ca1Copy full SHA for e8e7ca1
winpython/utils.py
@@ -371,8 +371,8 @@ def python_query(cmd, path):
371
"""Execute Python command using the Python interpreter located in *path*"""
372
the_exe = get_python_executable(path)
373
# debug2021-09-12
374
- print('%s -c "%s"' % (the_exe, cmd), ' * ', path)
375
- return exec_shell_cmd('%s -c "%s"' % (the_exe, cmd), path).splitlines()[0]
+ print('"%s" -c "%s"' % (the_exe, cmd), ' * ', path)
+ return exec_shell_cmd('"%s" -c "%s"' % (the_exe, cmd), path).splitlines()[0]
376
377
def python_execmodule(cmd, path):
378
0 commit comments