Skip to content
Snippets Groups Projects
Commit 6380ead2 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix bug while generating the error message when a file path specified in the config doesn't exist

parent 036516d6
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment