summary refs log tree commit diff
path: root/synapse/http
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-11-20 12:48:21 +0000
committerDavid Baker <dbkr@matrix.org>2014-11-20 12:48:21 +0000
commitcf66532ac10ff80ab020d6dd88fb8bc7845b3cf9 (patch)
tree86e530d7738fb02587d07461690f5879dfb8f9df /synapse/http
parentMerge branch 'master' into develop (diff)
downloadsynapse-cf66532ac10ff80ab020d6dd88fb8bc7845b3cf9.tar.xz
CaptchaServerHttpClient should extend the base, not matrix http client.
Diffstat (limited to 'synapse/http')
-rw-r--r--synapse/http/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py
index dea61ba1e0..e2fdded673 100644
--- a/synapse/http/client.py
+++ b/synapse/http/client.py
@@ -361,7 +361,7 @@ class IdentityServerHttpClient(BaseHttpClient):
         defer.returnValue(json.loads(body))
 
 
-class CaptchaServerHttpClient(MatrixHttpClient):
+class CaptchaServerHttpClient(BaseHttpClient):
     """Separate HTTP client for talking to google's captcha servers"""
 
     def _getEndpoint(self, reactor, destination):