Commit 1f2a436b by James Cammarata

Merge pull request #8038 from caphrim007/correct-missing-msg-argument

Fix missing msg argument
parents ec16b18b 4a871f49
......@@ -126,7 +126,7 @@ def rax_dns(module, comment, email, name, state, ttl):
changed = True
domain.get()
except Exception, e:
module.fail_json('%s' % e.message)
module.fail_json(msg='%s' % e.message)
elif state == 'absent':
try:
......
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