diff options
author | Mats Wichmann <mats@linux.com> | 2021-11-26 19:03:12 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2021-11-26 19:03:12 (GMT) |
commit | b3e2581902d861ce350df9c3354c1d26eb88de03 (patch) | |
tree | 8ba39a5cbb9c891a0c98990bd3d2af6c29b8c3e8 /test/scons-time | |
parent | f8ce26e209fc61957a8202a01edf42ddd3e25959 (diff) | |
download | SCons-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.py | 2 | ||||
-rw-r--r-- | test/scons-time/run/option/python.py | 2 |
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) """, ) |