diff --git a/tests-ng/tests-launcher.py b/tests-ng/tests-launcher.py index 1961b5e..3b54752 100755 --- a/tests-ng/tests-launcher.py +++ b/tests-ng/tests-launcher.py @@ -34,7 +34,7 @@ def run_test(logfd, path): proc = subprocess.Popen(path, shell=False, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, - text=True) + universal_newlines=True) out, _ = proc.communicate() ret = proc.returncode == 0 reason = 'returncode'