From 79d083e80ab2913a0568c91fa68ce4f8f3bbc782 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Tue, 9 Oct 2012 12:28:48 +0200 Subject: [PATCH] Sigh, another retypo problem --- hpilo_facts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hpilo_facts b/hpilo_facts index 403c0cf094d..0fe34c26d33 100755 --- a/hpilo_facts +++ b/hpilo_facts @@ -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)