URI: 
       tprint config path in debug message - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit a735fbabe0b5b77e8b783ee6ed8da457ff6fbd00
   DIR parent c64e8b98856ad3a34be43ed3291169cb52ec66dd
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu, 10 Sep 2015 11:01:58 +0200
       
       print config path in debug message
       
       Diffstat:
         M lib/simple_config.py                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/simple_config.py b/lib/simple_config.py
       t@@ -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)