diff --git a/lib/simple_config.py b/lib/simple_config.py index 0e72b8de..3fa70f0f 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -193,7 +193,7 @@ def read_user_config(path): with open(config_path, "r") as f: data = f.read() except IOError: - print_msg("Error: Cannot read config file.") + print_msg("Error: Cannot read config file.", path) return {} try: result = json.loads(data)