1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add a newline in output here, possibly considering printing top level keys flat

This commit is contained in:
Michael DeHaan 2012-03-02 19:52:43 -05:00
parent 1420c49277
commit b33ef0de60

View file

@ -166,10 +166,10 @@ class Cli(object):
print buf print buf
else: else:
if not failed: if not failed:
buf += "%s >>" % hostname buf += "%s >>\n" % hostname
else: else:
buf += "%s | FAILED >>" % hostname buf += "%s | FAILED >>\n" % hostname
buf += json.dumps(result, indent=4, sort_keys=True) buf += json.dumps(result, sort_keys=True)
print buf print buf
if options.tree: if options.tree:
path = os.path.join(options.tree, hostname) path = os.path.join(options.tree, hostname)