From c914e9e462b310c153de13c78700398cce96db3d Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sun, 16 Mar 2014 14:11:27 -0400 Subject: [PATCH] Update setup module signature from merge commit. --- system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/setup b/system/setup index 71120b72dc2..ae03ad8d74d 100644 --- a/system/setup +++ b/system/setup @@ -2306,7 +2306,7 @@ def ansible_facts(module): def run_setup(module): setup_options = dict(module_setup=True) - facts = ansible_facts() + facts = ansible_facts(module) for (k, v) in facts.items(): setup_options["ansible_%s" % k.replace('-', '_')] = v