From d738eb2fed659af8d886ae975d6828d609b0c16a Mon Sep 17 00:00:00 2001 From: Zach Abrahamson Date: Tue, 15 Dec 2015 21:11:41 -0500 Subject: [PATCH] Wrapping room parameter in a string in case of using room IDs --- notification/hipchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification/hipchat.py b/notification/hipchat.py index f565ca9cdfc..2ff40be3f24 100644 --- a/notification/hipchat.py +++ b/notification/hipchat.py @@ -184,7 +184,7 @@ def main(): ) token = module.params["token"] - room = module.params["room"] + room = str(module.params["room"]) msg = module.params["msg"] msg_from = module.params["msg_from"] color = module.params["color"]