cloudstack: cs_account: fix error handing on state=absent

This commit is contained in:
Rene Moser 2015-09-06 01:42:56 +02:00
parent 5e45d9dffb
commit 6e2b97427b

View file

@ -326,7 +326,7 @@ class AnsibleCloudStackAccount(AnsibleCloudStack):
if not self.module.check_mode:
res = self.cs.deleteAccount(id=account['id'])
if 'errortext' in account:
if 'errortext' in res:
self.module.fail_json(msg="Failed: '%s'" % res['errortext'])
poll_async = self.module.params.get('poll_async')