Merge pull request #1380 from zacharya/devel

Wrapping room parameter in a string in case of using room IDs
This commit is contained in:
Brian Coca 2015-12-16 09:21:40 -05:00
commit bde5686552

View file

@ -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"]