From 9bafde953a18f08e722ffc94c051c51ef397251b Mon Sep 17 00:00:00 2001 From: Sander Sweers Date: Sun, 4 Mar 2018 19:50:29 +0100 Subject: [PATCH] mconf: make print_aligned static --- mesonbuild/mconf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()