From 7e74fcc93536ca249a45b0ec7698edaef9a66e80 Mon Sep 17 00:00:00 2001 From: thomasv Date: Sun, 3 Mar 2013 15:00:12 +0100 Subject: [PATCH] qrscanner --- plugins/qrscanner.py | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/plugins/qrscanner.py b/plugins/qrscanner.py index a13789e..2604590 100644 --- a/plugins/qrscanner.py +++ b/plugins/qrscanner.py @@ -1,13 +1,11 @@ from electrum.util import print_error +from urlparse import urlparse, parse_qs try: import zbar -except ImportError: - print_error("Install zbar package to enable QR scans") +except ImportError: zbar = None -from urlparse import urlparse, parse_qs - def init(wallet): pass @@ -19,7 +17,7 @@ def init_gui(gui): gui.wallet.unset_hook('create_send_tab', create_send_tab) def get_info(): - return 'QR scans', "QR Scans" + return 'QR scans', "QR Scans.\nInstall the zbar package to enable this plugin" def is_enabled(): return is_available() -- 1.7.1