mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Merge pull request #576 from davehatton/adjust_playbook_output_formating
improve output formating for playbook
This commit is contained in:
commit
dc4ebab345
2 changed files with 4 additions and 4 deletions
|
@ -91,7 +91,7 @@ def main(args):
|
|||
print callbacks.banner("PLAY RECAP")
|
||||
for h in hosts:
|
||||
t = pb.stats.summarize(h)
|
||||
print "%-30s : ok=%4s changed=%4s unreachable=%4s failed=%4s " % (h,
|
||||
print "%-30s : ok=%-4s changed=%-4s unreachable=%-4s failed=%-4s " % (h,
|
||||
t['ok'], t['changed'], t['unreachable'], t['failures']
|
||||
)
|
||||
print "\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue