adjusted list hosts across adhoc and playbook cli

This commit is contained in:
Brian Coca 2015-07-29 14:56:22 -04:00 committed by James Cammarata
parent 3a50c08c01
commit ced93d35ca
2 changed files with 2 additions and 1 deletions

View file

@ -166,7 +166,7 @@ class PlaybookCLI(CLI):
if self.options.listhosts:
playhosts = set(inventory.get_hosts(play.hosts))
msg += "\n pattern: %s\n total hosts: %d\n hosts:" % (play.hosts, len(playhosts))
msg += "\n pattern: %s\n hosts (%d):" % (play.hosts, len(playhosts))
for host in playhosts:
msg += "\n %s" % host