summary refs log tree commit diff
path: root/synapse/config/saml2_config.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2020-09-06 23:32:28 +0100
committerRichard van der Hoff <richard@matrix.org>2020-09-06 23:32:28 +0100
commit77b4711bc28c6e1c2c56ae564f93985d21419251 (patch)
tree7308cff3630d81cd97cf9eadb88aeafa6d997b5c /synapse/config/saml2_config.py
parentIn light of #8255, use BIGINTs for destination_rooms (#8256) (diff)
parentAdd cross-signing sigs to the `keys` object (#8234) (diff)
downloadsynapse-77b4711bc28c6e1c2c56ae564f93985d21419251.tar.xz
Merge branch 'release-v1.20.0' into develop
Diffstat (limited to 'synapse/config/saml2_config.py')
-rw-r--r--synapse/config/saml2_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/saml2_config.py b/synapse/config/saml2_config.py
index 036f8c0e90..cc7401888b 100644
--- a/synapse/config/saml2_config.py
+++ b/synapse/config/saml2_config.py
@@ -171,7 +171,7 @@ class SAML2Config(Config):
 
         self.saml2_error_html_template = self.read_templates(
             ["saml_error.html"], saml2_config.get("template_dir")
-        )
+        )[0]
 
     def _default_saml_config_dict(
         self, required_attributes: set, optional_attributes: set