From 38a49ad068d3ed092ef2e8d759b08f6871640e21 Mon Sep 17 00:00:00 2001 From: pentarctagon Date: Thu, 5 Dec 2019 19:36:55 -0600 Subject: [PATCH] Fix case of converting a string with str(). --- run_wml_tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_wml_tests b/run_wml_tests index eaae92e1a7c..5966d679dda 100755 --- a/run_wml_tests +++ b/run_wml_tests @@ -140,7 +140,7 @@ class WesnothRunner: # for now just create a result so that this can be handled # by the same code path as other statuses. res = subprocess.CompletedProcess(args, UnitTestResult.TIMEOUT.value, - stderr = "Timed out (killed by Python timeout implementation)") + stderr = b"Timed out (killed by Python timeout implementation)") if self.verbose > 1: print("Result:", res.returncode, "\n", res.stderr) if res.returncode < 0: