From 1a2d32fca522fc3eb43c2bdce07d15b70d2bc76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Mon, 26 Jun 2017 18:09:15 +0200 Subject: [PATCH] Better error message why pgp is not working --- src/roster_window.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index cf4984d4d..9c0a2a823 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -2130,8 +2130,9 @@ class RosterWindow: keyid = gajim.config.get_per('accounts', account, 'keyid') if keyid and not gajim.connections[account].gpg: dialogs.WarningDialog(_('OpenPGP is not usable'), - _('You will be connected to %s without OpenPGP.') % \ - account) + _('Gajim needs python-gnupg >= 0.3.8\n' + 'Beware there is an incompatible python package called gnupg.\n' + 'You will be connected to %s without OpenPGP.') % account) self.send_status_continue(account, status, txt, auto, to)