diff options
author | Jacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com> | 2021-11-09 22:29:29 (GMT) |
---|---|---|
committer | Jacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com> | 2021-11-09 22:29:29 (GMT) |
commit | edcb036cb41913b242e1c00b4b71138b6eb602d8 (patch) | |
tree | 64f7aef169a95ae251092a42aa12bc70a2655204 | |
parent | 0ff59496095c92ad23b0f09b488c7f49886cd794 (diff) | |
download | SCons-edcb036cb41913b242e1c00b4b71138b6eb602d8.zip SCons-edcb036cb41913b242e1c00b4b71138b6eb602d8.tar.gz SCons-edcb036cb41913b242e1c00b4b71138b6eb602d8.tar.bz2 |
One f-string got away!
-rw-r--r-- | test/Configure/implicit-cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Configure/implicit-cache.py b/test/Configure/implicit-cache.py index 4078a98..fb7d766 100644 --- a/test/Configure/implicit-cache.py +++ b/test/Configure/implicit-cache.py @@ -114,7 +114,7 @@ test.run_sconsign(f'-d .sconf_temp -e {test_filename} --raw {database_name}') new_sconsign_dblite = test.stdout() if old_sconsign_dblite != new_sconsign_dblite: - print(f"{database_name} did not match:") + print("{} did not match:".format(database_name)) print("FIRST RUN ==========") print(old_sconsign_dblite) print("SECOND RUN ==========") |