From 2a723e908eb3eefe05f4319a0fa7ec0d12dd31e2 Mon Sep 17 00:00:00 2001 From: James Laska Date: Wed, 12 Mar 2014 09:04:42 -0400 Subject: [PATCH] Fix issue#6430 by instantiating Network() with expected arguments --- library/system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/setup b/library/system/setup index 5ae5ece8bad..b3d6f5e61f4 100644 --- a/library/system/setup +++ b/library/system/setup @@ -2297,7 +2297,7 @@ def ansible_facts(module): facts = {} facts.update(Facts().populate()) facts.update(Hardware().populate()) - facts.update(Network(module).populate()) + facts.update(Network().populate()) facts.update(Virtual().populate()) return facts