summaryrefslogtreecommitdiffstats
path: root/test/scons-time
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 /test/scons-time
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>
Diffstat (limited to 'test/scons-time')
-rw-r--r--test/scons-time/run/config/python.py2
-rw-r--r--test/scons-time/run/option/python.py2
2 files changed, 2 insertions, 2 deletions
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)
""",
)