From a13581e6db0d00018ccb08cee8ca72d08b283ed4 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 6 Aug 2017 09:55:49 +0200 Subject: [PATCH] fix #2697 --- 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 9be6fdc9b..bfd43122a 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -279,7 +279,7 @@ def read_user_config(path): data = f.read() result = json.loads(data) except: - print_msg("Warning: Cannot read config file.", config_path) + print_error("Warning: Cannot read config file.", config_path) return {} if not type(result) is dict: return {}