Commit afd55934 by Matt Martz

Remove errant raise

parent 7b3aa5c2
...@@ -152,7 +152,6 @@ def rax_dns(module, comment, email, name, state, ttl): ...@@ -152,7 +152,6 @@ def rax_dns(module, comment, email, name, state, ttl):
domain.delete() domain.delete()
changed = True changed = True
except Exception, e: except Exception, e:
raise
module.fail_json(msg='%s' % e.message) module.fail_json(msg='%s' % e.message)
module.exit_json(changed=changed, domain=to_dict(domain)) module.exit_json(changed=changed, domain=to_dict(domain))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment