URI: 
       tfix #3071: import error message - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 5a45f257cad2f2077fc2acda872b48e12d2bc1c9
   DIR parent 76da6916f3cef08f0e2ff7fb22b4a3c76f8dee5c
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 20 Oct 2017 09:53:54 +0200
       
       fix #3071: import error message
       
       Diffstat:
         M electrum                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum b/electrum
       t@@ -69,7 +69,7 @@ def check_imports():
                import google.protobuf
                import jsonrpclib
            except ImportError as e:
       -        sys.exit("Error: %s. Try 'sudo pip install <module-name>'"%e.message)
       +        sys.exit("Error: %s. Try 'sudo pip install <module-name>'"%str(e))
            # the following imports are for pyinstaller
            from google.protobuf import descriptor
            from google.protobuf import message