From 45fac464bddd30206ba71133442dfbb6b093651d Mon Sep 17 00:00:00 2001 From: finswimmer Date: Thu, 26 Aug 2021 17:55:48 +0200 Subject: [PATCH] fix (install-poetry): revert use of capture_output --- install-poetry.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-poetry.py b/install-poetry.py index 7c9796b..9980ff5 100644 --- a/install-poetry.py +++ b/install-poetry.py @@ -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, )