mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
nova.py: indented and sorted JSON output
This commit is contained in:
@@ -199,7 +199,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)
|
||||
|
||||
#####################################################
|
||||
@@ -228,7 +228,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:
|
||||
|
||||
Reference in New Issue
Block a user