Commit 6dc47d46 by Sébastien Eustace

Fix call to venv binaries on windows

parent 007868de
......@@ -257,7 +257,7 @@ class Venv:
if not self.is_venv():
return bin
return str(self._bin_dir / bin + ('.exe' if self._windows else ''))
return str(self._bin_dir / bin) + ('.exe' if self._windows else '')
def is_venv(self) -> bool:
return self._venv is not None
......
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