diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-08-26 16:20:50 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-08-26 16:20:50 +0100 |
commit | 66a4d3352447f170afcddd1270c1a743273d19e6 (patch) | |
tree | 49ee0260dd816d6f7c640f742c4895c6b5cb10fb /cmdclient/console.py | |
parent | Merge branch 'develop' into storage_transactions (diff) | |
parent | Merge branch 'client_server_url_rename' into develop (diff) | |
download | synapse-66a4d3352447f170afcddd1270c1a743273d19e6.tar.xz |
Merge branch 'develop' into storage_transactions
Diffstat (limited to 'cmdclient/console.py')
-rwxr-xr-x | cmdclient/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdclient/console.py b/cmdclient/console.py index 0fbb822010..f997b7539c 100755 --- a/cmdclient/console.py +++ b/cmdclient/console.py @@ -436,7 +436,7 @@ class SynapseCmd(cmd.Cmd): print "Unrecognised type: %s" % args["type"] return room_id = args["roomid"] - path = "/rooms/%s/%s/list" % (urllib.quote(room_id), args["type"]) + path = "/rooms/%s/%s" % (urllib.quote(room_id), args["type"]) qp = {"access_token": self._tok()} if "qp" in args: |