mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix 'module' object is not callable
This commit is contained in:
parent
f9404b0d85
commit
dbc422ea1c
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ def main():
|
||||||
password = module.params['password']
|
password = module.params['password']
|
||||||
|
|
||||||
# initialize connection
|
# initialize connection
|
||||||
client = xmlrpc_client(saturl)
|
client = xmlrpc_client.Server(saturl)
|
||||||
session = client.auth.login(user, password)
|
session = client.auth.login(user, password)
|
||||||
|
|
||||||
# get systemid
|
# get systemid
|
||||||
|
|
Loading…
Reference in a new issue