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:
HPLogsdon 2015-03-19 17:11:42 -06:00
parent cb848fcd9e
commit c622c54e9e

View file

@ -137,7 +137,7 @@ def main():
try:
send_msg(module, token, room, msg_from, msg, msg_format, color, notify, api)
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
module.exit_json(changed=changed, room=room, msg_from=msg_from, msg=msg)