Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--omemo/ui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/omemo/ui.py b/omemo/ui.py
index 99c2db5..8755583 100644
--- a/omemo/ui.py
+++ b/omemo/ui.py
@@ -34,9 +34,9 @@ PILLOW = False
try:
import qrcode
PILLOW = True
-except Exception as e:
- log.exception('Error:')
- log.error('python-qrcode or dependencies of it, are not available')
+except ImportError as error:
+ log.debug(error)
+ log.error('python-qrcode or dependencies of it are not available')
from common import gajim
from common import configpaths