electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit a13581e6db0d00018ccb08cee8ca72d08b283ed4
parent 72706f8219fa10e48fc0029113735f6600df519a
Author: ThomasV <thomasv@electrum.org>
Date:   Sun,  6 Aug 2017 09:55:49 +0200

fix #2697

Diffstat:
Mlib/simple_config.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 {}