summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-04-28 16:52:22 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-04-28 16:53:10 +0100
commitce207aa0ff8824f91799b493e66a41c3e7b5fc92 (patch)
tree87ca3af83cfe85bc25259b351fb65213f8c782b4
parentFix collation for postgres for unit tests (#7359) (diff)
downloadsynapse-ce207aa0ff8824f91799b493e66a41c3e7b5fc92.tar.xz
Fix typo 'datbases' in ConfigError
-rw-r--r--synapse/config/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/database.py b/synapse/config/database.py
index c27fef157b..5b662d1b01 100644
--- a/synapse/config/database.py
+++ b/synapse/config/database.py
@@ -138,7 +138,7 @@ class DatabaseConfig(Config):
         database_path = config.get("database_path")
 
         if multi_database_config and database_config:
-            raise ConfigError("Can't specify both 'database' and 'datbases' in config")
+            raise ConfigError("Can't specify both 'database' and 'databases' in config")
 
         if multi_database_config:
             if database_path: