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

This commit is contained in:
James Laska 2014-03-12 09:04:42 -04:00
parent 92871f8e2e
commit cb63352aff

View file

@ -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