From 916a10c8ecdf70bff46ae5188c5794399b42ba11 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Fri, 10 Feb 2017 20:07:38 -0500 Subject: [PATCH] delegate_to is a string --- lib/ansible/playbook/block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/playbook/block.py b/lib/ansible/playbook/block.py index 2ff5d33b349..1b607a1162c 100644 --- a/lib/ansible/playbook/block.py +++ b/lib/ansible/playbook/block.py @@ -37,7 +37,7 @@ class Block(Base, Become, Conditional, Taggable): # other fields _any_errors_fatal = FieldAttribute(isa='bool') - _delegate_to = FieldAttribute(isa='list') + _delegate_to = FieldAttribute(isa='string') _delegate_facts = FieldAttribute(isa='bool', default=False) _name = FieldAttribute(isa='string', default='')