diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-03-01 20:26:51 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-01 20:26:51 +0100 |
commit | 78430855f695e8faa1982aa890505f20f6611fe0 (patch) | |
tree | 2491d94685ba86d7a0b72d48f9eb8136879badce | |
parent | 9a0847455532fd203768d37266aa461e65352095 (diff) | |
download | gemato-78430855f695e8faa1982aa890505f20f6611fe0.tar.gz |
openpgp: Fix typo
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | gemato/openpgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gemato/openpgp.py b/gemato/openpgp.py index 630872d..fb178af 100644 --- a/gemato/openpgp.py +++ b/gemato/openpgp.py @@ -210,7 +210,7 @@ class SystemGPGEnvironment: sig_list[-1].fingerprint = spl[2].decode('utf8') sig_list[-1].timestamp = ( self._parse_gpg_ts(spl[4].decode('utf8'))) - sig_list[-1].expiration_timestamp = ( + sig_list[-1].expire_timestamp = ( self._parse_gpg_ts(spl[5].decode('utf8'))) sig_list[-1].primary_key_fingerprint = spl[11].decode('utf8') elif line.startswith(b'[GNUPG:] TRUST_'): |