From 37970112d9b6c36104c85fbf6b6ec3e10f0170df 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. --- library/notification/hipchat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/notification/hipchat b/library/notification/hipchat index 6d2904c167..3568217ab6 100644 --- a/library/notification/hipchat +++ b/library/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"]),