aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pull/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pull/utils.py')
-rw-r--r--pull/utils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pull/utils.py b/pull/utils.py
index 6ffccd1..84337e8 100644
--- a/pull/utils.py
+++ b/pull/utils.py
@@ -10,10 +10,9 @@ import subprocess
def check_output(*args, stdout=subprocess.PIPE, **kwargs):
- result = subprocess.run(args, stdout=stdout, stderr=subprocess.STDOUT,
- encoding='utf-8', **kwargs)
try:
- result.check_returncode()
+ result = subprocess.run(args, stdout=stdout, stderr=subprocess.STDOUT,
+ encoding='utf-8', check=True, **kwargs)
if stdout != subprocess.DEVNULL:
if result.stdout is None:
logging.debug('%s', args)