diff options
author | Mats Wichmann <mats@linux.com> | 2020-08-03 19:58:52 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-08-03 19:58:52 (GMT) |
commit | b3894c70b0786fb7027979e340a58740a057fbb4 (patch) | |
tree | 83b8f9227d3227df5e29163292746791d40fd580 /test/SideEffect | |
parent | 4893cd758301fdf3d8bc39f7ff3b04669056089e (diff) | |
download | SCons-b3894c70b0786fb7027979e340a58740a057fbb4.zip SCons-b3894c70b0786fb7027979e340a58740a057fbb4.tar.gz SCons-b3894c70b0786fb7027979e340a58740a057fbb4.tar.bz2 |
[PR #3746] fixed missed Py2-Py3 porting on testcase adds
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/SideEffect')
-rw-r--r-- | test/SideEffect/parallel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SideEffect/parallel.py b/test/SideEffect/parallel.py index d272e86..6c1dc39 100644 --- a/test/SideEffect/parallel.py +++ b/test/SideEffect/parallel.py @@ -103,7 +103,7 @@ for line in build_lines: if missing: print("===== standard output is missing the following lines:") - print(string.join(missing, '\n')) + print('\n'.join(missing)) print("===== STDOUT ========================================") print(stdout) test.fail_test() @@ -124,7 +124,7 @@ for line in log_lines: if missing: print("===== log file 'log.txt' is missing the following lines:") - print(string.join(missing, '\n')) + print('\n'.join(missing)) print("===== STDOUT ===========================================") print(log) test.fail_test() |