Merge pull request #4547 from bridadan/sort_config_data

Sort the config parameters before printing them
pull/4736/head
Anna Bridge 2017-07-07 12:44:18 +01:00 committed by GitHub
commit 8224dab741
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,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())