summaryrefslogtreecommitdiff
path: root/alldefconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-12-14 17:15:57 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2019-12-14 17:35:45 +0100
commitc2414bdf64c03470061d280a7d1b5ea97bab3185 (patch)
treee7958a9b498b3271f3b27a8ca2cd359d0bd976dd /alldefconfig.py
parent595eabcb624d9da1a7bb47365ca4f7a8e76fe44a (diff)
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.
Diffstat (limited to 'alldefconfig.py')
-rwxr-xr-xalldefconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alldefconfig.py b/alldefconfig.py
index fab8385..b83919c 100755
--- a/alldefconfig.py
+++ b/alldefconfig.py
@@ -19,7 +19,7 @@ import kconfiglib
def main():
kconf = kconfiglib.standard_kconfig(__doc__)
- kconfiglib.load_allconfig(kconf, "alldef.config")
+ kconf.load_allconfig("alldef.config")
print(kconf.write_config())