1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

utils/check_output: Fix missing ignore parameter propagation

This commit is contained in:
Marc Bonnici 2020-11-04 17:59:50 +00:00 committed by setrofim
parent 98bc0a31e1
commit 2cfb076e4c

View File

@ -205,7 +205,7 @@ def check_output(command, timeout=None, ignore=None, inputtext=None, **kwargs):
"""This is a version of subprocess.check_output that adds a timeout parameter to kill
the subprocess if it does not return within the specified time."""
process = get_subprocess(command, **kwargs)
return check_subprocess_output(process, timeout=timeout, inputtext=inputtext)
return check_subprocess_output(process, timeout=timeout, ignore=ignore, inputtext=inputtext)
def walk_modules(path):