diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-13 18:16:12 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-13 18:16:12 +0000 |
commit | 3983c7fb0ffa5c95c3b143aecd32510c156f9950 (patch) | |
tree | 08ad33e77f0c0f56a8acb4c2ed00966c553c1909 /synapse/config | |
parent | Fix typo in media repository doc string (diff) | |
parent | Bump version and change log (diff) | |
download | synapse-3983c7fb0ffa5c95c3b143aecd32510c156f9950.tar.xz |
Merge branch 'hotfixes-v0.5.4' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index 1426436dcb..1cdd03e414 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -44,9 +44,9 @@ class Config(object): ) if not os.path.exists(file_path): raise ConfigError( - "File % config for %s doesn't exist." + "File %s config for %s doesn't exist." " Try running again with --generate-config" - % (config_name,) + % (file_path, config_name,) ) return cls.abspath(file_path) |