From f6cd560ca74248dd719a37cfb34386148727a92d Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 14 Sep 2016 14:32:48 +0200 Subject: [PATCH] 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 --- lang/python/pyme/results.py | 5 +---- 1 file changed, 1 insertion(+), 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)