summaryrefslogtreecommitdiff
path: root/examples/allnoconfig_simpler.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/allnoconfig_simpler.py')
-rw-r--r--examples/allnoconfig_simpler.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/allnoconfig_simpler.py b/examples/allnoconfig_simpler.py
index affa004..f8f2a2c 100644
--- a/examples/allnoconfig_simpler.py
+++ b/examples/allnoconfig_simpler.py
@@ -16,6 +16,11 @@ import sys
conf = kconfiglib.Config(sys.argv[1])
+# Avoid warnings printed by Kconfiglib when assigning a user value with
+# set_user_value() to a symbol that has no prompt (such assignments never have
+# an effect)
+conf.set_print_warnings(False)
+
for sym in conf:
if sym.get_type() in (kconfiglib.BOOL, kconfiglib.TRISTATE):
sym.set_user_value("n")