Skip to content

Commit

Permalink
Improvement on setting VALID_INCLUDE_KEYWORDS on HandlerTaskInclude (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel authored May 22, 2019
1 parent 584a32e commit 8bb3274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/playbook/handler_task_include.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

class HandlerTaskInclude(Handler, TaskInclude):

VALID_INCLUDE_KEYWORDS = frozenset(('listen',) + tuple(TaskInclude.VALID_INCLUDE_KEYWORDS))
VALID_INCLUDE_KEYWORDS = TaskInclude.VALID_INCLUDE_KEYWORDS.union(('listen',))

@staticmethod
def load(data, block=None, role=None, task_include=None, variable_manager=None, loader=None):
Expand Down

0 comments on commit 8bb3274

Please sign in to comment.