aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 823affe..494d1bd 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -45,7 +45,8 @@ class Conf:
# are erased when Meson is executed the next time, i.e. when
# Ninja is run.
- def print_aligned(self, arr):
+ @staticmethod
+ def print_aligned(arr):
def make_lower_case(val):
if isinstance(val, bool):
return str(val).lower()