Fix typo in hipchat notification failure message.
Wish it could be more substantial, but alas, it's just a typo in a string.
This commit is contained in:
parent
cb848fcd9e
commit
c622c54e9e
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ def main():
|
||||||
try:
|
try:
|
||||||
send_msg(module, token, room, msg_from, msg, msg_format, color, notify, api)
|
send_msg(module, token, room, msg_from, msg, msg_format, color, notify, api)
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json(msg="unable to sent msg: %s" % e)
|
module.fail_json(msg="unable to send msg: %s" % e)
|
||||||
|
|
||||||
changed = True
|
changed = True
|
||||||
module.exit_json(changed=changed, room=room, msg_from=msg_from, msg=msg)
|
module.exit_json(changed=changed, room=room, msg_from=msg_from, msg=msg)
|
||||||
|
|
Loading…
Reference in a new issue