Make the default playbook name an empty string (v2)

pull/10943/head
James Cammarata 9 years ago
parent 8214ac7841
commit 50542db0be

@ -58,7 +58,7 @@ class Play(Base, Taggable, Become):
# Connection
_gather_facts = FieldAttribute(isa='string', default='smart')
_hosts = FieldAttribute(isa='list', default=[], required=True)
_name = FieldAttribute(isa='string', default='<no name specified>')
_name = FieldAttribute(isa='string', default='')
# Variable Attributes
_vars_files = FieldAttribute(isa='list', default=[])

Loading…
Cancel
Save