Commit 2a723e90 by James Laska

Fix issue#6430 by instantiating Network() with expected arguments

parent e0147f18
......@@ -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
......
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