Commit 8922c619 by Sébastien Eustace

Try another fix for call to venv binaries on windows

parent ca3094e7
...@@ -202,6 +202,9 @@ class Venv: ...@@ -202,6 +202,9 @@ class Venv:
if shell: if shell:
cmd = ' '.join(cmd) cmd = ' '.join(cmd)
if self._windows:
kwargs['shell'] = True
output = subprocess.check_output( output = subprocess.check_output(
cmd, stderr=subprocess.STDOUT, cmd, stderr=subprocess.STDOUT,
**kwargs **kwargs
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment