From a735fbabe0b5b77e8b783ee6ed8da457ff6fbd00 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 10 Sep 2015 11:01:58 +0200 Subject: [PATCH] print config path in debug message --- lib/simple_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)