Sort the config parameters before printing them

pull/4547/head
Brian Daniels 2017-06-13 16:36:21 -05:00
parent 35999be018
commit 1db46c1df7
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ if __name__ == '__main__':
if params:
print "Configuration parameters"
print "------------------------"
for p in params:
for p in sorted(params):
for s in options.prefix:
if p.startswith(s):
print(str(params[p]) if not options.verbose else params[p].get_verbose_description())