diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-13 18:15:14 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-13 18:15:14 +0000 |
commit | 88484f684f68f43b1c13ae12bcf259f14d314dc8 (patch) | |
tree | 48bb4095ebb9664d5d35b304f63b78da06c3c790 /synapse/config | |
parent | Merge branch 'release-v0.5.4' of github.com:matrix-org/synapse (diff) | |
parent | Bump version and change log (diff) | |
download | synapse-88484f684f68f43b1c13ae12bcf259f14d314dc8.tar.xz |
Merge branch 'hotfixes-v0.5.4' of github.com:matrix-org/synapse v0.5.4a
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 6870af10e8..846570811f 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) |