From 69ae06024120f3286b26a23b74a9642e582ab592 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 6 May 2024 12:23:19 +0300 Subject: [PATCH] Remove test Signed-off-by: Dimitris Zlatanidis --- slpkg/gpg_verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slpkg/gpg_verify.py b/slpkg/gpg_verify.py index 0de809d5..69d265a3 100644 --- a/slpkg/gpg_verify.py +++ b/slpkg/gpg_verify.py @@ -35,7 +35,7 @@ class GPGVerify(Configs): # pylint: disable=[R0903] # exit_code: int = 0 for file in asc_files: - with subprocess.Popen(f'{gpg_command} {file}a', shell=True, stdout=subprocess.PIPE, + with subprocess.Popen(f'{gpg_command} {file}', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) as process: process.wait()