diff options
Diffstat (limited to 'scripts/automation/regression/misc_methods.py')
-rwxr-xr-x | scripts/automation/regression/misc_methods.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/automation/regression/misc_methods.py b/scripts/automation/regression/misc_methods.py index 6873622e..41e8e125 100755 --- a/scripts/automation/regression/misc_methods.py +++ b/scripts/automation/regression/misc_methods.py @@ -33,6 +33,8 @@ def run_command(cmd, background = False): print('Running command: %s' % cmd) proc = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE, stderr=subprocess.PIPE) (stdout, stderr) = proc.communicate() + stdout = stdout.decode() + stderr = stderr.decode() if stdout: print('Stdout:\n%s' % stdout) if proc.returncode: |