aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-09-14 12:32:48 +0000
committerJustus Winter <[email protected]>2016-09-14 12:32:48 +0000
commitf6cd560ca74248dd719a37cfb34386148727a92d (patch)
treefdcf0ce54a5759d7599b57068da3eefee7a6697c
parentpython: Improve build system integration. (diff)
downloadgpgme-f6cd560ca74248dd719a37cfb34386148727a92d.tar.gz
gpgme-f6cd560ca74248dd719a37cfb34386148727a92d.zip
python: Adapt to TOFU changes.
* lang/python/pyme/results.py (TofuInfo): Drop. (Signature): The TOFU information moved to the key. Signed-off-by: Justus Winter <[email protected]>
-rw-r--r--lang/python/pyme/results.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/lang/python/pyme/results.py b/lang/python/pyme/results.py
index bfc26cce..3383896b 100644
--- a/lang/python/pyme/results.py
+++ b/lang/python/pyme/results.py
@@ -92,12 +92,9 @@ class SignResult(Result):
class Notation(Result):
pass
-class TofuInfo(Result):
- pass
-
class Signature(Result):
_type = dict(wrong_key_usage=bool, chain_model=bool)
- _map = dict(notations=Notation, tofu=TofuInfo)
+ _map = dict(notations=Notation)
class VerifyResult(Result):
_map = dict(signatures=Signature)