aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index fbb528c..18bb37b 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -122,8 +122,7 @@ class Conf:
if not options:
print(' No {}\n'.format(title.lower()))
arr = []
- for k in sorted(options):
- o = options[k]
+ for k, o in sorted(options.items()):
d = o.description
v = o.printable_value()
c = o.choices