Commit 2377152d by Michael DeHaan

Merge pull request #612 from jhoekx/fix-custom-facts

Fix typo while handling custom facts.
parents 3c2cbae6 f1b16119
......@@ -221,7 +221,7 @@ class PlayBook(object):
# add facts to the global setup cache
for host, result in results['contacted'].iteritems():
facts = results.get('ansible_facts', {})
facts = result.get('ansible_facts', {})
self.SETUP_CACHE[host].update(facts)
self.stats.compute(results)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment