summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-08-20 15:39:05 +0100
committerErik Johnston <erik@matrix.org>2015-08-20 15:39:05 +0100
commit61cd03466f53dfd1ad07a91294abc00040ef59fd (patch)
tree975ec3534fa5c85ef1324e717c86bf0d6a62bee1 /synapse/rest
parentMerge pull request #231 from matrix-org/erikj/pushers_store_last_token (diff)
parentRemove spurious extra arg to set_password (diff)
downloadsynapse-61cd03466f53dfd1ad07a91294abc00040ef59fd.tar.xz
Merge pull request #238 from matrix-org/fix_set_password
Fix set password
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/v2_alpha/account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py
index 897c54b539..522a312c9e 100644
--- a/synapse/rest/client/v2_alpha/account.py
+++ b/synapse/rest/client/v2_alpha/account.py
@@ -79,7 +79,7 @@ class PasswordRestServlet(RestServlet):
         new_password = params['new_password']
 
         yield self.auth_handler.set_password(
-            user_id, new_password, None
+            user_id, new_password
         )
 
         defer.returnValue((200, {}))