commit a735fbabe0b5b77e8b783ee6ed8da457ff6fbd00
parent c64e8b98856ad3a34be43ed3291169cb52ec66dd
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 10 Sep 2015 11:01:58 +0200
print config path in debug message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)