From 132c14eb57c56a05e65db7c86a609fd3a94b49f9 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 28 Jul 2015 22:31:40 -0400 Subject: [PATCH] indented hosts --- lib/ansible/cli/playbook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cli/playbook.py b/lib/ansible/cli/playbook.py index f56c5692db0..44cc2515026 100644 --- a/lib/ansible/cli/playbook.py +++ b/lib/ansible/cli/playbook.py @@ -168,7 +168,7 @@ class PlaybookCLI(CLI): playhosts = set(inventory.get_hosts(play.hosts)) msg += "\n pattern: %s\n total hosts: %d\n hosts:" % (play.hosts, len(playhosts)) for host in playhosts: - msg += "\n %s" % host + msg += "\n %s" % host self.display.display(msg)