From b8f821f0654ec8545055d56f9acfaaca3f73d745 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 7 Oct 2013 08:14:54 -0400 Subject: [PATCH] Add "from" as an alias to "msg_from" in the hipchat module, to match docs. --- notification/hipchat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification/hipchat b/notification/hipchat index 6d2904c1671..3568217ab68 100644 --- a/notification/hipchat +++ b/notification/hipchat @@ -112,7 +112,7 @@ def main(): token=dict(required=True), room=dict(required=True), msg=dict(required=True), - msg_from=dict(default="Ansible"), + msg_from=dict(default="Ansible", aliases=['from']), color=dict(default="yellow", choices=["yellow", "red", "green", "purple", "gray", "random"]), msg_format=dict(default="text", choices=["text", "html"]),