Sigh, another retypo problem
This commit is contained in:
parent
a70db4fb0b
commit
79d083e80a
1 changed files with 3 additions and 3 deletions
|
@ -106,9 +106,9 @@ def main():
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
host = module.params('host')
|
host = module.params.get('host')
|
||||||
login = module.params('login')
|
login = module.params.get('login')
|
||||||
password = module.params('password')
|
password = module.params.get('password')
|
||||||
match = module.params.get('match')
|
match = module.params.get('match')
|
||||||
|
|
||||||
ilo = hpilo.Ilo(host, login=login, password=password)
|
ilo = hpilo.Ilo(host, login=login, password=password)
|
||||||
|
|
Loading…
Reference in a new issue