diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 823affe14..494d1bd44 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()