Merge pull request #12101 from tquenolle/devel

Synchronize fix error
This commit is contained in:
Toshio Kuratomi 2015-08-26 07:03:13 -07:00
commit 5df5a14edc

View file

@ -77,7 +77,7 @@ class ActionModule(ActionBase):
# connection to the remote host
if 'ansible_syslog_facility' in task_vars:
del task_vars['ansible_syslog_facility']
for key in task_vars:
for key in task_vars.keys():
if key.startswith("ansible_") and key.endswith("_interpreter"):
del task_vars[key]