Merge pull request #576 from davehatton/adjust_playbook_output_formating

improve output formating for playbook
This commit is contained in:
Michael DeHaan 2012-07-11 17:42:39 -07:00
commit dc4ebab345
2 changed files with 4 additions and 4 deletions

View file

@ -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"