diff --git a/test/shaping/run-tests.py b/test/shaping/run-tests.py index 73b61c21a..915536b97 100755 --- a/test/shaping/run-tests.py +++ b/test/shaping/run-tests.py @@ -9,7 +9,7 @@ def cmd(command): p = subprocess.Popen ( command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) p.wait () - print (p.stderr.read (), end="") # file=sys.stderr + print (p.stderr.read ().decode ("utf-8").strip ()) # file=sys.stderr return p.stdout.read ().decode ("utf-8").strip (), p.returncode