Skip to content

Commit 8224dab

Browse files
authored
Merge pull request #4547 from bridadan/sort_config_data
Sort the config parameters before printing them
2 parents 4890261 + 1db46c1 commit 8224dab

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
@@ -67,7 +67,7 @@
6767
if params:
6868
print "Configuration parameters"
6969
print "------------------------"
70-
for p in params:
70+
for p in sorted(params):
7171
for s in options.prefix:
7272
if p.startswith(s):
7373
print(str(params[p]) if not options.verbose else params[p].get_verbose_description())

0 commit comments

Comments
 (0)