Fix ansible_lo being used inside of ansible_facts

The logic was keeping ansible_facts['ansible_lo'] instead of fixing it
to be ansible_facts['lo']
This commit is contained in:
Toshio Kuratomi 2018-03-12 13:55:48 -07:00 committed by Brian Coca
parent aeb56e4bbe
commit 31878ee0ea

View file

@ -106,7 +106,7 @@ def namespace_facts(facts):
''' return all facts inside 'ansible_facts' w/o an ansible_ prefix '''
deprefixed = {}
for k in facts:
if k in ('ansible_local'):
if k in ('ansible_local',):
# exceptions to 'deprefixing'
deprefixed[k] = deepcopy(facts[k])
else: