Skip to content

Commit 1db46c1

Browse files
committed
Sort the config parameters before printing them
1 parent 35999be commit 1db46c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/get_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
if params:
6767
print "Configuration parameters"
6868
print "------------------------"
69-
for p in params:
69+
for p in sorted(params):
7070
for s in options.prefix:
7171
if p.startswith(s):
7272
print(str(params[p]) if not options.verbose else params[p].get_verbose_description())

0 commit comments

Comments
 (0)