diff options
author | David Baker <dave@matrix.org> | 2016-06-02 13:31:45 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-06-02 13:31:45 +0100 |
commit | 4a10510cd5aff790127a185ecefc83b881a717cc (patch) | |
tree | f97be85047a563d33cbd234f36d271147ce664e9 /synapse/rest/client/v2_alpha/auth.py | |
parent | Merge pull request #815 from matrix-org/dbkr/email_greeting_not_none (diff) | |
download | synapse-4a10510cd5aff790127a185ecefc83b881a717cc.tar.xz |
Split out the auth handler
Diffstat (limited to 'synapse/rest/client/v2_alpha/auth.py')
-rw-r--r-- | synapse/rest/client/v2_alpha/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/auth.py b/synapse/rest/client/v2_alpha/auth.py index 78181b7b18..58d3cad6a1 100644 --- a/synapse/rest/client/v2_alpha/auth.py +++ b/synapse/rest/client/v2_alpha/auth.py @@ -104,7 +104,7 @@ class AuthRestServlet(RestServlet): super(AuthRestServlet, self).__init__() self.hs = hs self.auth = hs.get_auth() - self.auth_handler = hs.get_handlers().auth_handler + self.auth_handler = hs.get_auth_handler() self.registration_handler = hs.get_handlers().registration_handler @defer.inlineCallbacks |