merge-requests/30/head
Bob Mottram 2021-03-17 20:23:44 +00:00
parent 133b77386a
commit 9f872d8b61
1 changed files with 1 additions and 1 deletions

2
pgp.py
View File

@ -419,7 +419,7 @@ def _pgpLocalPublicKeyId() -> str:
return None
if len(result) < 5:
return None
return result.replace('"', '').strip()
return result.decode('utf-8').replace('"', '').strip()
def _pgpLocalPublicKey() -> str: