aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-09-14 22:54:40 -0400
committerEli Schwartz <eschwartz@archlinux.org>2021-10-04 16:29:31 -0400
commit1bb2523e5877b32554593b149b710606096bbe5e (patch)
tree53a764dc44775ec01096b96a96dd168a653cbd18 /mesonbuild/mconf.py
parentb2ddda701387751d84013aaf85e02669672b2a14 (diff)
downloadmeson-1bb2523e5877b32554593b149b710606096bbe5e.zip
meson-1bb2523e5877b32554593b149b710606096bbe5e.tar.gz
meson-1bb2523e5877b32554593b149b710606096bbe5e.tar.bz2
remove f from f-string that has no formatting
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 4b3f331..b58eaa7 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -298,7 +298,7 @@ class Conf:
if not mismatching:
return
print("\nThe following option(s) have a different value than the build type default\n")
- print(f' current default')
+ print(' current default')
for m in mismatching:
print(f'{m[0]:21}{m[1]:10}{m[2]:10}')