summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-12-18 10:06:56 +0000
committerDavid Baker <dave@matrix.org>2015-12-18 10:07:28 +0000
commitce4999268a06ccc716d1340b0f4c3e88103d7084 (patch)
treef0932f367713736936a4f8f0bcb3f0b6bcb5b541
parentMerge pull request #447 from matrix-org/rav/fix_search_pagination (diff)
downloadsynapse-ce4999268a06ccc716d1340b0f4c3e88103d7084.tar.xz
Fix typo that broke registration on the mobile clients
-rw-r--r--synapse/handlers/register.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py
index a037da0f70..19df5aa852 100644
--- a/synapse/handlers/register.py
+++ b/synapse/handlers/register.py
@@ -42,7 +42,7 @@ class RegistrationHandler(BaseHandler):
 
         self.distributor = hs.get_distributor()
         self.distributor.declare("registered_user")
-        self.captch_client = CaptchaServerHttpClient(hs)
+        self.captcha_client = CaptchaServerHttpClient(hs)
 
     @defer.inlineCallbacks
     def check_username(self, localpart):