Return stdout in log_check_call

This commit is contained in:
Anders Ingemann 2013-07-13 15:01:21 +02:00
parent b3311a8ff6
commit 135ebfbb95

View file

@ -5,6 +5,7 @@ def log_check_call(command):
if status != 0:
from subprocess import CalledProcessError
raise CalledProcessError(status, ' '.join(command), '\n'.join(stderr))
return stdout
def log_call(command):