fixed typo on novaclient var

reviewable/pr18780/r1
Brian Coca 10 years ago
parent 1d47dc2ea0
commit 5011593ee3

@ -97,7 +97,7 @@ def main():
state = dict(default='present', choices=['absent', 'present']) state = dict(default='present', choices=['absent', 'present'])
)) ))
module = AnsibleModule(argument_spec=argument_spec) module = AnsibleModule(argument_spec=argument_spec)
if not HAVE_NOVACLIENT: if not HAS_NOVACLIENT:
module.fail_json(msg='python-novaclient is required for this module to work') module.fail_json(msg='python-novaclient is required for this module to work')
nova = nova_client.Client(module.params['login_username'], nova = nova_client.Client(module.params['login_username'],

Loading…
Cancel
Save