From 3c6fdebfe38d3b3d6c4a33e251fd6de3333f50ba Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 3 Apr 2015 13:49:00 -0400 Subject: [PATCH] made listhosts play output name more consistent internally --- v2/ansible/executor/playbook_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/ansible/executor/playbook_executor.py b/v2/ansible/executor/playbook_executor.py index bab6ea4e05..24b9f8c17b 100644 --- a/v2/ansible/executor/playbook_executor.py +++ b/v2/ansible/executor/playbook_executor.py @@ -178,7 +178,7 @@ class PlaybookExecutor: pname = play.get_name().strip() if pname == 'PLAY: ': - pname = 'play #%d' % i + pname = 'PLAY: #%d' % i playlist.append( { 'name': pname,