Merge pull request #1263 from dagwieers/hpilo_facts-fix

Sigh, another retypo
This commit is contained in:
Michael DeHaan 2012-10-09 05:22:49 -07:00
commit 06688efb24

View file

@ -106,9 +106,9 @@ def main():
)
)
host = module.params('host')
login = module.params('login')
password = module.params('password')
host = module.params.get('host')
login = module.params.get('login')
password = module.params.get('password')
match = module.params.get('match')
ilo = hpilo.Ilo(host, login=login, password=password)