From 4fed606df2df02bd19b39008d1dc6cc86dfd3995 Mon Sep 17 00:00:00 2001 From: revsuine Date: Tue, 12 Nov 2024 14:06:58 +0000 Subject: [PATCH] syntax error fix --- gpgmymail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpgmymail b/gpgmymail index 3b40fad..c55a960 100755 --- a/gpgmymail +++ b/gpgmymail @@ -127,7 +127,7 @@ def main() -> None: required=False, help="Encoding to use for the gnupg.GPG object") parser.add_argument('recipient', nargs='*', - help="Key ID or email of keys to encrypt for")A + help="Key ID or email of keys to encrypt for") args = parser.parse_args() msg = email.message_from_file(sys.stdin)