diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2024-09-27 19:54:35 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2024-09-27 19:54:35 (GMT) |
commit | 29fe1db319d04d7c371a5cc38c3677a53d47258c (patch) | |
tree | e845b84edb4524c2d18292b7fe57d10984b611d7 | |
parent | f1117e193c2598a5c6df6063b37b204766479e51 (diff) | |
download | SCons-29fe1db319d04d7c371a5cc38c3677a53d47258c.zip SCons-29fe1db319d04d7c371a5cc38c3677a53d47258c.tar.gz SCons-29fe1db319d04d7c371a5cc38c3677a53d47258c.tar.bz2 |
Remove unnecessary f-string specification in ms common logging error message.
-rw-r--r-- | SCons/Tool/MSCommon/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Tool/MSCommon/common.py b/SCons/Tool/MSCommon/common.py index 5ec92a2..3663f11 100644 --- a/SCons/Tool/MSCommon/common.py +++ b/SCons/Tool/MSCommon/common.py @@ -149,7 +149,7 @@ if LOGFILE: log_handler = logging.FileHandler(filename=LOGFILE) except (OSError, FileNotFoundError) as e: err_msg = ( - f"Could not create logfile, check SCONS_MSCOMMON_DEBUG\n" + "Could not create logfile, check SCONS_MSCOMMON_DEBUG\n" f" SCONS_MSCOMMON_DEBUG={LOGFILE}\n" f" {e.__class__.__name__}: {str(e)}" ) |