hipchat api v2 rooms are now url escaped
This commit is contained in:
parent
84f2aa6167
commit
ed35159702
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ def send_msg_v2(module, token, room, msg_from, msg, msg_format='text',
|
|||
|
||||
POST_URL = api + NOTIFY_URI_V2
|
||||
|
||||
url = POST_URL.replace('{id_or_name}', room)
|
||||
url = POST_URL.replace('{id_or_name}', urllib.pathname2url(room))
|
||||
data = json.dumps(body)
|
||||
|
||||
if module.check_mode:
|
||||
|
|
Loading…
Reference in a new issue