diff options
author | Daniel Moody <dmoody256@gmail.com> | 2022-05-27 04:03:13 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2022-05-27 04:03:13 (GMT) |
commit | f262fbd6bacf1c0d7f26d747d853b9ce909f4442 (patch) | |
tree | b743c523bbb6daa53f21021c663162ace4d57d9e | |
parent | 9f6cfbdd5dc35a9711e5c5ab5ef3414b4a05e0ef (diff) | |
download | SCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.zip SCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.tar.gz SCons-f262fbd6bacf1c0d7f26d747d853b9ce909f4442.tar.bz2 |
fix missing f string
-rw-r--r-- | SCons/Action.py | 2 |
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 |