diff options
| author | Russel Winder <russel@winder.org.uk> | 2014-09-15 17:52:28 (GMT) |
|---|---|---|
| committer | Russel Winder <russel@winder.org.uk> | 2014-09-15 17:52:28 (GMT) |
| commit | 31a6b57a62dcbdfcb4b059feb4a9ea93793c3e70 (patch) | |
| tree | 7cc66513d74e4f187bd29d61ca22364c3038e27a /test/D/CoreScanner | |
| parent | 811d3f2115eae697a0132d11d07df54163f3479b (diff) | |
| download | SCons-31a6b57a62dcbdfcb4b059feb4a9ea93793c3e70.zip SCons-31a6b57a62dcbdfcb4b059feb4a9ea93793c3e70.tar.gz SCons-31a6b57a62dcbdfcb4b059feb4a9ea93793c3e70.tar.bz2 | |
And all the rest of the {} in format strings made Python 2.6 compatible.
Diffstat (limited to 'test/D/CoreScanner')
| -rw-r--r-- | test/D/CoreScanner/Common/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/CoreScanner/Common/common.py b/test/D/CoreScanner/Common/common.py index 657e83e..1d2fde0 100644 --- a/test/D/CoreScanner/Common/common.py +++ b/test/D/CoreScanner/Common/common.py @@ -44,7 +44,7 @@ def testForTool(tool): _obj = TestSCons._obj if not isExecutableOfToolAvailable(test, tool) : - test.skip_test("Required executable for tool '{}' not found, skipping test.\n".format(tool)) + test.skip_test("Required executable for tool '{0}' not found, skipping test.\n".format(tool)) test.dir_fixture('Image') test.write('SConstruct', open('SConstruct_template', 'r').read().format(tool)) |
