aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter/interpreter.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-08-28 10:49:58 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2022-08-29 23:32:43 +0300
commitff7d86d05f0022a74845fda721bc22dda08cbb15 (patch)
treef6e5420bdf35313a0c7e6a64fea217e95d43edeb /mesonbuild/interpreter/interpreter.py
parent520bb7abbc2e2a83d4568ada7d8f0271d548b5d7 (diff)
downloadmeson-ff7d86d05f0022a74845fda721bc22dda08cbb15.zip
meson-ff7d86d05f0022a74845fda721bc22dda08cbb15.tar.gz
meson-ff7d86d05f0022a74845fda721bc22dda08cbb15.tar.bz2
flake8: fix unnecessary f-strings without any format placeholders
These can just be ordinary strings.
Diffstat (limited to 'mesonbuild/interpreter/interpreter.py')
-rw-r--r--mesonbuild/interpreter/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py
index efa31b8..1dc80ad 100644
--- a/mesonbuild/interpreter/interpreter.py
+++ b/mesonbuild/interpreter/interpreter.py
@@ -2333,7 +2333,7 @@ class Interpreter(InterpreterBase, HoldableObject):
def _warn_kwarg_install_mode_sticky(self, mode: FileMode) -> None:
if mode.perms > 0 and mode.perms & stat.S_ISVTX:
mlog.deprecation('install_mode with the sticky bit on a file does not do anything and will '
- f'be ignored since Meson 0.64.0', location=self.current_node)
+ 'be ignored since Meson 0.64.0', location=self.current_node)
perms = stat.filemode(mode.perms - stat.S_ISVTX)[1:]
return FileMode(perms, mode.owner, mode.group)
else: