Skip to content

Commit

Permalink
Merge pull request ansible#8038 from caphrim007/correct-missing-msg-a…
Browse files Browse the repository at this point in the history
…rgument

Fix missing msg argument
  • Loading branch information
jimi-c committed Jul 5, 2014
2 parents ec16b18 + 4a871f4 commit 1f2a436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/cloud/rax_dns
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1f2a436

Please sign in to comment.