mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-11 16:44:22 -07:00
Merge pull request #8038 from caphrim007/correct-missing-msg-argument
Fix missing msg argument
This commit is contained in:
commit
1f2a436bbf
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ def rax_dns(module, comment, email, name, state, ttl):
|
||||||
changed = True
|
changed = True
|
||||||
domain.get()
|
domain.get()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json('%s' % e.message)
|
module.fail_json(msg='%s' % e.message)
|
||||||
|
|
||||||
elif state == 'absent':
|
elif state == 'absent':
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue