summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-07-20 17:49:55 +0100
committerErik Johnston <erik@matrix.org>2017-07-20 17:49:55 +0100
commitb238cf7f6bea80eae076bd34c50d470211a78c72 (patch)
tree955844290e59d3956daca750e4934f9b4b4533fe /synapse/rest
parentCheck values are strings (diff)
downloadsynapse-b238cf7f6bea80eae076bd34c50d470211a78c72.tar.xz
Remove spurious content param
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/v2_alpha/groups.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/groups.py b/synapse/rest/client/v2_alpha/groups.py
index 64d803d489..009cd70737 100644
--- a/synapse/rest/client/v2_alpha/groups.py
+++ b/synapse/rest/client/v2_alpha/groups.py
@@ -46,7 +46,7 @@ class GroupServlet(RestServlet):
         defer.returnValue((200, group_description))
 
     @defer.inlineCallbacks
-    def on_POST(self, request, group_id, content):
+    def on_POST(self, request, group_id):
         requester = yield self.auth.get_user_by_req(request)
         user_id = requester.user.to_string()