Remove errant raise

This commit is contained in:
Matt Martz 2013-12-06 16:49:28 -06:00
parent ecee2f4537
commit b82ccee78c

View file

@ -152,7 +152,6 @@ def rax_dns(module, comment, email, name, state, ttl):
domain.delete()
changed = True
except Exception, e:
raise
module.fail_json(msg='%s' % e.message)
module.exit_json(changed=changed, domain=to_dict(domain))