Skip to content
Snippets Groups Projects
Commit c2828230 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

update python-gnupg to 0.3.0 + add KEYEXPIRED support. Fixes #7151

parent 1189f2c0
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -72,8 +72,8 @@ if HAVE_GPG:
if result.fingerprint:
return self._stripHeaderFooter(str(result))
# if 'KEYEXPIRED' in resp:
# return 'KEYEXPIRED'
if result.status == 'key expired':
return 'KEYEXPIRED'
return 'BAD_PASSPHRASE'
def verify(self, str_, sign):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment