diff options
-rw-r--r-- | b4/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index 61fe542..5a8466b 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -1633,6 +1633,8 @@ class LoreAttestorPatatt(LoreAttestor): if result == patatt.RES_VALID: self.passing = True self.have_key = True + elif result >= patatt.RES_BADSIG: + self.have_key = True def _run_command(cmdargs: list, stdin: Optional[bytes] = None) -> Tuple[int, bytes, bytes]: |