diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-28 16:52:22 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-28 16:53:10 +0100 |
commit | ce207aa0ff8824f91799b493e66a41c3e7b5fc92 (patch) | |
tree | 87ca3af83cfe85bc25259b351fb65213f8c782b4 /synapse | |
parent | Fix collation for postgres for unit tests (#7359) (diff) | |
download | synapse-ce207aa0ff8824f91799b493e66a41c3e7b5fc92.tar.xz |
Fix typo 'datbases' in ConfigError
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/database.py | 2 |
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: |