Fix typo from 5ae850c
This commit is contained in:
parent
de690445bc
commit
398f6bbb89
4 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ class Block(Base, Become, Conditional, Taggable):
|
||||||
_rescue = FieldAttribute(isa='list', default=[])
|
_rescue = FieldAttribute(isa='list', default=[])
|
||||||
_always = FieldAttribute(isa='list', default=[])
|
_always = FieldAttribute(isa='list', default=[])
|
||||||
_delegate_to = FieldAttribute(isa='list')
|
_delegate_to = FieldAttribute(isa='list')
|
||||||
_delegate_facts = FieldAttribute(isa='bool', defalt=False)
|
_delegate_facts = FieldAttribute(isa='bool', default=False)
|
||||||
|
|
||||||
# for future consideration? this would be functionally
|
# for future consideration? this would be functionally
|
||||||
# similar to the 'else' clause for exceptions
|
# similar to the 'else' clause for exceptions
|
||||||
|
|
|
@ -61,7 +61,7 @@ def hash_params(params):
|
||||||
class Role(Base, Become, Conditional, Taggable):
|
class Role(Base, Become, Conditional, Taggable):
|
||||||
|
|
||||||
_delegate_to = FieldAttribute(isa='string')
|
_delegate_to = FieldAttribute(isa='string')
|
||||||
_delegate_facts = FieldAttribute(isa='bool', defalt=False)
|
_delegate_facts = FieldAttribute(isa='bool', default=False)
|
||||||
|
|
||||||
def __init__(self, play=None):
|
def __init__(self, play=None):
|
||||||
self._role_name = None
|
self._role_name = None
|
||||||
|
|
|
@ -41,7 +41,7 @@ class RoleInclude(RoleDefinition):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_delegate_to = FieldAttribute(isa='string')
|
_delegate_to = FieldAttribute(isa='string')
|
||||||
_delegate_facts = FieldAttribute(isa='bool', defalt=False)
|
_delegate_facts = FieldAttribute(isa='bool', default=False)
|
||||||
|
|
||||||
def __init__(self, play=None, role_basedir=None, variable_manager=None, loader=None):
|
def __init__(self, play=None, role_basedir=None, variable_manager=None, loader=None):
|
||||||
super(RoleInclude, self).__init__(play=play, role_basedir=role_basedir, variable_manager=variable_manager, loader=loader)
|
super(RoleInclude, self).__init__(play=play, role_basedir=role_basedir, variable_manager=variable_manager, loader=loader)
|
||||||
|
|
|
@ -72,7 +72,7 @@ class Task(Base, Conditional, Taggable, Become):
|
||||||
_changed_when = FieldAttribute(isa='string')
|
_changed_when = FieldAttribute(isa='string')
|
||||||
_delay = FieldAttribute(isa='int', default=5)
|
_delay = FieldAttribute(isa='int', default=5)
|
||||||
_delegate_to = FieldAttribute(isa='string')
|
_delegate_to = FieldAttribute(isa='string')
|
||||||
_delegate_facts = FieldAttribute(isa='bool', defalt=False)
|
_delegate_facts = FieldAttribute(isa='bool', default=False)
|
||||||
_failed_when = FieldAttribute(isa='string')
|
_failed_when = FieldAttribute(isa='string')
|
||||||
_first_available_file = FieldAttribute(isa='list')
|
_first_available_file = FieldAttribute(isa='list')
|
||||||
_loop = FieldAttribute(isa='string', private=True)
|
_loop = FieldAttribute(isa='string', private=True)
|
||||||
|
|
Loading…
Reference in a new issue