From 3f0aa89f08b7c37ea0727a7c7ec9e530b849d07c Mon Sep 17 00:00:00 2001 From: revsuine Date: Mon, 4 Nov 2024 16:33:36 +0000 Subject: [PATCH] more helpful program description --- gpgmymail | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gpgmymail b/gpgmymail index 48fbafd..0e2233f 100755 --- a/gpgmymail +++ b/gpgmymail @@ -97,7 +97,8 @@ def decrypt(message: email.message.Message) -> str: def main() -> None: """Program entry""" parser = argparse.ArgumentParser( - description="Encrypt/decrypt mail using GPG/MIME" + description="Encrypt/decrypt mail using GPG/MIME. Takes an email from " + "stdin and outputs to stdout." ) parser.add_argument('-d', '--decrypt', action="store_true", help="Decrypt rather than encrypt")