mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-15 21:12:47 +00:00
Fix case of converting a string with str().
This commit is contained in:
parent
504f138e6c
commit
38a49ad068
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user