Commit f1b16119 by Jeroen Hoekx

Fix typo while handling custom facts.

This fixes #611.
parent 3c2cbae6
...@@ -221,7 +221,7 @@ class PlayBook(object): ...@@ -221,7 +221,7 @@ class PlayBook(object):
# add facts to the global setup cache # add facts to the global setup cache
for host, result in results['contacted'].iteritems(): for host, result in results['contacted'].iteritems():
facts = results.get('ansible_facts', {}) facts = result.get('ansible_facts', {})
self.SETUP_CACHE[host].update(facts) self.SETUP_CACHE[host].update(facts)
self.stats.compute(results) 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