summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2021-11-26 19:03:12 (GMT)
committerMats Wichmann <mats@linux.com>2021-11-26 19:03:12 (GMT)
commitb3e2581902d861ce350df9c3354c1d26eb88de03 (patch)
tree8ba39a5cbb9c891a0c98990bd3d2af6c29b8c3e8
parentf8ce26e209fc61957a8202a01edf42ddd3e25959 (diff)
downloadSCons-b3e2581902d861ce350df9c3354c1d26eb88de03.zip
SCons-b3e2581902d861ce350df9c3354c1d26eb88de03.tar.gz
SCons-b3e2581902d861ce350df9c3354c1d26eb88de03.tar.bz2
Fix one new sider problem and a syntax error
Signed-off-by: Mats Wichmann <mats@linux.com>
-rwxr-xr-xCHANGES.txt2
-rw-r--r--test/scons-time/run/config/python.py2
-rw-r--r--test/scons-time/run/option/python.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 881a3f8..f418973 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -18,7 +18,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
to conventions, drop a Py2 workaround, and pick as better "system" path
(old one remains supported).
- Fix testsuite to work on Windows systems where there is no usable
- assocation for running .py files (there are five tests where we need
+ association for running .py files (there are five tests where we need
to do this for internal reasons, these are skipped now).
diff --git a/test/scons-time/run/config/python.py b/test/scons-time/run/config/python.py
index 129ea0f..ebfece1 100644
--- a/test/scons-time/run/config/python.py
+++ b/test/scons-time/run/config/python.py
@@ -60,7 +60,7 @@ for arg in sys.argv[1:]:
if arg.startswith('--profile='):
profile = arg[10:]
break
-print('my_python.py: %%s' %% profile)
+print('my_python.py: %s' % profile)
""",
)
diff --git a/test/scons-time/run/option/python.py b/test/scons-time/run/option/python.py
index 02890e7..5458d07 100644
--- a/test/scons-time/run/option/python.py
+++ b/test/scons-time/run/option/python.py
@@ -53,7 +53,7 @@ for arg in sys.argv[1:]:
if arg.startswith('--profile='):
profile = arg[10:]
break
-sys.stdout.write('my_python.py: %%s\\n' %% profile)
+sys.stdout.write('my_python.py: %s\\n' % profile)
""",
)