Missed variable exchangeExists -> exchange_exists

This commit is contained in:
Manuel Sousa 2015-05-15 16:08:47 +01:00 committed by Matt Clay
parent 4c301bda5c
commit 8bcb8550e4

View file

@ -119,10 +119,10 @@ def main():
r = requests.get( url, auth=(module.params['login_user'],module.params['login_password'])) r = requests.get( url, auth=(module.params['login_user'],module.params['login_password']))
if r.status_code==200: if r.status_code==200:
exchangeExists = True exchange_exists = True
response = r.json() response = r.json()
elif r.status_code==404: elif r.status_code==404:
exchangeExists = False exchange_exists = False
response = r.text response = r.text
else: else:
module.fail_json( module.fail_json(
@ -131,9 +131,9 @@ def main():
) )
if module.params['state']=='present': if module.params['state']=='present':
changeRequired = not exchangeExists change_required = not exchange_exists
else: else:
changeRequired = exchangeExists change_required = exchange_exists
# Check if attributes change on existing exchange # Check if attributes change on existing exchange
if not changeRequired and r.status_code==200 and module.params['state'] == 'present': if not changeRequired and r.status_code==200 and module.params['state'] == 'present':