mirror of https://github.com/ARMmbed/mbed-os.git
Sort the config parameters before printing them
parent
35999be018
commit
1db46c1df7
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue