diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-26 16:29:44 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-26 16:29:44 +0100 |
commit | 8885c8546c3493ada2f00b1626d45fa90109ab5f (patch) | |
tree | 7dbe04a84413a4511bcc3ef62d227659052cefa7 /cmdclient/console.py | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor (diff) | |
parent | Respect 'limit' param in initialSync api (diff) | |
download | synapse-8885c8546c3493ada2f00b1626d45fa90109ab5f.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor
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: |