diff options
author | David Baker <dbkr@matrix.org> | 2014-11-20 12:48:21 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-20 12:48:21 +0000 |
commit | cf66532ac10ff80ab020d6dd88fb8bc7845b3cf9 (patch) | |
tree | 86e530d7738fb02587d07461690f5879dfb8f9df /synapse | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-cf66532ac10ff80ab020d6dd88fb8bc7845b3cf9.tar.xz |
CaptchaServerHttpClient should extend the base, not matrix http client.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/http/client.py | 2 |
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): |