summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorRichard von Seck <richard.von-seck@gmx.net>2017-11-16 15:59:38 +0100
committerRichard von Seck <richard.von-seck@gmx.net>2017-11-16 15:59:38 +0100
commit6f05de0e5ecd9e3f4d418232f0af7d1aef087426 (patch)
tree148f26ed31c4ecea88be46aa5cb3783b98f57db9 /synapse
parentMerge pull request #2661 from matrix-org/rav/statereadstore (diff)
downloadsynapse-6f05de0e5ecd9e3f4d418232f0af7d1aef087426.tar.xz
synapse/config/password_auth_providers: Fixed bracket typo
Signed-off-by: Richard von Seck <richard.von-seck@gmx.net>
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/password_auth_providers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/config/password_auth_providers.py b/synapse/config/password_auth_providers.py
index e9828fac17..6602c5b4c7 100644
--- a/synapse/config/password_auth_providers.py
+++ b/synapse/config/password_auth_providers.py
@@ -29,10 +29,10 @@ class PasswordAuthProviderConfig(Config):
         # param.
         ldap_config = config.get("ldap_config", {})
         if ldap_config.get("enabled", False):
-            providers.append[{
+            providers.append({
                 'module': LDAP_PROVIDER,
                 'config': ldap_config,
-            }]
+            })
 
         providers.extend(config.get("password_providers", []))
         for provider in providers: