Merge pull request #6436 from jlaska/issue_6430

Fix issue#6430 by instantiating Network() with expected arguments
pull/4420/head
Michael DeHaan 2014-03-12 08:10:16 -05:00
commit f2a1887f1c
1 changed files with 1 additions and 1 deletions

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