Commit 67e56853 by James Cammarata

Merge pull request #7996 from msabramo/nova.py_JSON_indented_and_sorted

nova.py: indented and sorted JSON output
parents 27b1d05e 26cc0b37
......@@ -87,7 +87,7 @@ if len(sys.argv) == 2 and (sys.argv[1] == '--list'):
continue
# Return server list
print json.dumps(groups)
print(json.dumps(groups, sort_keys=True, indent=2))
sys.exit(0)
#####################################################
......@@ -116,7 +116,7 @@ elif len(sys.argv) == 3 and (sys.argv[1] == '--host'):
if key != 'os_manager':
results[key] = value
print json.dumps(results)
print(json.dumps(results, sort_keys=True, indent=2))
sys.exit(0)
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment