From 7002341583f197d9457924a32aa05e920723ee05 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Sun, 19 Sep 2021 15:42:09 +0200 Subject: [PATCH] ngkeyid --- gpg_status_parser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpg_status_parser.py b/gpg_status_parser.py index 1cdb4c1..595e9a3 100644 --- a/gpg_status_parser.py +++ b/gpg_status_parser.py @@ -37,13 +37,14 @@ class BadSignature: class UncheckableSignature: - def __init__(self, keyid, pkalgo, hashalgo, sig_class, time, rc): + def __init__(self, keyid, pkalgo, hashalgo, sig_class, time, rc, longkeyid): self.keyid = keyid self.pkalgo = pkalgo self.hashalgo = hashalgo self.sig_class = sig_class self.time = time self.rc = rc + self.longkeyid = longkeyid class ValidSignature: