Fix datacenter_name and cluster_name module params (#2142)

pull/18777/head
krzwalko 9 years ago committed by Matt Clay
parent 913afa9a99
commit a7fe4cee03

@ -146,11 +146,11 @@ def main():
if not HAS_PYVMOMI: if not HAS_PYVMOMI:
module.fail_json(changed=False, msg='pyvmomi is required for this module') module.fail_json(changed=False, msg='pyvmomi is required for this module')
datacenter_name = p['datacenter']
cluster_name = p['cluster']
try: try:
p = module.params p = module.params
datacenter_name = p['datacenter']
cluster_name = p['cluster']
content = connect_to_api(module) content = connect_to_api(module)
datacenter = None datacenter = None
@ -185,4 +185,3 @@ from ansible.module_utils.basic import *
if __name__ == '__main__': if __name__ == '__main__':
main() main()

Loading…
Cancel
Save