Better error message why pgp is not working

This commit is contained in:
Philipp Hörist 2017-06-26 18:09:15 +02:00
parent 7a6d7baebc
commit 1a2d32fca5
1 changed files with 3 additions and 2 deletions

View File

@ -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)