From 6380ead2ee9f88be86941da4c1dcac3d2aa29eea Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Sat, 13 Dec 2014 18:03:01 +0000 Subject: [PATCH] Fix bug while generating the error message when a file path specified in the config doesn't exist --- synapse/config/_base.py | 4 ++-- 1 file 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)