From c2414bdf64c03470061d280a7d1b5ea97bab3185 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 14 Dec 2019 17:15:57 +0100 Subject: Add a member function version of load_allconfig() There was no great reason for this function to be a global function to begin with. Having it as a member function simplifies callers. load_allconfig() is a bit special in that it fails with sys.exit(), which is helpful for tools, but that probably doesn't influence where it belongs. Keep the global function for backwards compatibility. A deprecation warning might be added at some point. --- allnoconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'allnoconfig.py') diff --git a/allnoconfig.py b/allnoconfig.py index 3d5ca4a..7016d8d 100755 --- a/allnoconfig.py +++ b/allnoconfig.py @@ -36,7 +36,7 @@ def main(): sym.set_value(2 if sym.is_allnoconfig_y else 0) kconf.warn = True - kconfiglib.load_allconfig(kconf, "allno.config") + kconf.load_allconfig("allno.config") print(kconf.write_config()) -- cgit v1.2.3