From 6bb4a554e39db25799a8d113336acb8e3638047a Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 2 Feb 2015 15:15:44 +0100 Subject: [PATCH] suggest pip install instead of apt-get --- lib/qrscanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/qrscanner.py b/lib/qrscanner.py index 479dc8e8c..38cc1f3d0 100644 --- 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':