URI: 
       tsuggest pip install instead of apt-get - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6bb4a554e39db25799a8d113336acb8e3638047a
   DIR parent 97c57996b8d2398785b2a77aa188c236125301da
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon,  2 Feb 2015 15:15:44 +0100
       
       suggest pip install instead of apt-get
       
       Diffstat:
         M lib/qrscanner.py                    |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/qrscanner.py b/lib/qrscanner.py
       t@@ -12,7 +12,7 @@ proc = None
        def scan_qr(config):
            global proc
            if not zbar:
       -        raise BaseException("\n".join([_("Cannot start QR scanner."),_("The zbar package is not available."),_("On Linux, try 'sudo apt-get install python-zbar'")]))
       +        raise BaseException("\n".join([_("Cannot start QR scanner."),_("The zbar package is not available."),_("On Linux, try 'sudo pip install zbar'")]))
            if proc is None:
                device = config.get("video_device", "default")
                if device == 'default':