Make compatible with python

Removed one line if else
pull/18777/head
Manuel Sousa 9 years ago committed by Matt Clay
parent b5732b0011
commit 4c301bda5c

@ -130,7 +130,10 @@ def main():
details = r.text
)
changeRequired = not exchangeExists if module.params['state']=='present' else exchangeExists
if module.params['state']=='present':
changeRequired = not exchangeExists
else:
changeRequired = exchangeExists
# Check if attributes change on existing exchange
if not changeRequired and r.status_code==200 and module.params['state'] == 'present':

Loading…
Cancel
Save