From 9f8bb77a6eb1b14b1d464e3d78e9b0328c610f8d Mon Sep 17 00:00:00 2001 From: s3lph <1375407-s3lph@users.noreply.gitlab.com> Date: Mon, 18 Apr 2022 22:18:47 +0200 Subject: [PATCH] Fix full test report --- test/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/report.py b/test/report.py index 7e8f2d8..aa8872b 100755 --- a/test/report.py +++ b/test/report.py @@ -130,7 +130,7 @@ if msg2['Precedence'] != 'list': gpg1 = subprocess.Popen(['/usr/bin/gpg', '-d'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) -gpg1o, _ = gpg2.communicate(msg1.get_payload()[1].get_payload(decode=True)) +gpg1o, _ = gpg1.communicate(msg1.get_payload()[1].get_payload(decode=True)) print(f'Key conflict message (decrypted):\n{gpg1o}') gpg2 = subprocess.Popen(['/usr/bin/gpg', '-d'], stdin=subprocess.PIPE,