From 8efd7d217e2aa7ee55096faf4a7f9933c9d23ea6 Mon Sep 17 00:00:00 2001 From: HPLogsdon Date: Thu, 19 Mar 2015 17:11:42 -0600 Subject: [PATCH] Fix typo in hipchat notification failure message. Wish it could be more substantial, but alas, it's just a typo in a string. --- lib/ansible/modules/extras/notification/hipchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/notification/hipchat.py b/lib/ansible/modules/extras/notification/hipchat.py index 4ff95b32bf..24fde9ecb3 100644 --- a/lib/ansible/modules/extras/notification/hipchat.py +++ b/lib/ansible/modules/extras/notification/hipchat.py @@ -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)