mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 00:13:51 +01:00
Fix bug while generating the error message when a file path specified in the config doesn't exist
This commit is contained in:
parent
036516d647
commit
6380ead2ee
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue