From a36ad2d9c74cdfd5b774f56b2f3422bcf6abd3ac Mon Sep 17 00:00:00 2001 From: waterflow80 Date: Mon, 3 Jun 2024 19:56:55 +0100 Subject: [PATCH] Fixed TypeError generated after calling the gpg.verify_file(..) function. Changed the assginement of the self.status --- pretty_bad_protocol/_parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretty_bad_protocol/_parsers.py b/pretty_bad_protocol/_parsers.py index 6af3d6d..e83b795 100644 --- a/pretty_bad_protocol/_parsers.py +++ b/pretty_bad_protocol/_parsers.py @@ -1516,7 +1516,7 @@ def _handle_status(self, key, value): ): pass elif key == "KEY_CONSIDERED": - self.status = '\n'.join([self.status, "key considered"]) + self.status = "key considered" elif key == "NEWSIG": # Reset self.status = None