1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

Fix missing msg argument
This commit is contained in:
James Cammarata 2014-07-05 00:30:20 -05:00
commit 1f2a436bbf

View file

@ -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: