commit 6bb4a554e39db25799a8d113336acb8e3638047a
parent 97c57996b8d2398785b2a77aa188c236125301da
Author: ThomasV <thomasv@gitorious>
Date: Mon, 2 Feb 2015 15:15:44 +0100
suggest pip install instead of apt-get
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/qrscanner.py b/lib/qrscanner.py
@@ -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':