summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2022-05-27 04:03:13 (GMT)
committerDaniel Moody <dmoody256@gmail.com>2022-05-27 04:03:13 (GMT)
commitf262fbd6bacf1c0d7f26d747d853b9ce909f4442 (patch)
treeb743c523bbb6daa53f21021c663162ace4d57d9e
parent9f6cfbdd5dc35a9711e5c5ab5ef3414b4a05e0ef (diff)
downloadSCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.zip
SCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.tar.gz
SCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.tar.bz2
fix missing f string
-rw-r--r--SCons/Action.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Action.py b/SCons/Action.py
index 38570ce..e29c4e9 100644
--- a/SCons/Action.py
+++ b/SCons/Action.py
@@ -768,7 +768,7 @@ def _resolve_shell_env(env, target, source):
for generator in shell_gens:
ENV = generator(env, target, source, ENV)
if not isinstance(ENV, dict):
- raise SCons.Errors.UserError("SHELL_ENV_GENERATORS function: {generator} must return a dict.")
+ raise SCons.Errors.UserError(f"SHELL_ENV_GENERATORS function: {generator} must return a dict.")
return ENV