1
0
Fork 0
mirror of https://github.com/python-poetry/install.python-poetry.org.git synced 2024-09-13 13:17:11 -04:00

fix (install-poetry): revert use of capture_output

This commit is contained in:
finswimmer 2021-08-26 17:55:48 +02:00
parent 0e3b144488
commit 45fac464bd

View file

@ -584,7 +584,8 @@ class Installer:
subprocess.run(
[str(python), "-m", "pip", "install", specification],
capture_output=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=True,
)