From 27a35a5915d7b35eb1cbd47f2d4c9f051092bce5 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sun, 25 Oct 2015 13:04:49 +0000 Subject: [PATCH] Remove confusing short flags --- letsencrypt/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 8da015382..a25eca11f 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -834,14 +834,14 @@ def prepare_and_parse_args(plugins, args): helpful.add_group( "security", description="Security parameters & server settings") helpful.add( - "security", "-B", "--rsa-key-size", type=int, metavar="N", + "security", "--rsa-key-size", type=int, metavar="N", default=flag_default("rsa_key_size"), help=config_help("rsa_key_size")) helpful.add( - "security", "-r", "--redirect", action="store_true", + "security", "--redirect", action="store_true", help="Automatically redirect all HTTP traffic to HTTPS for the newly " "authenticated vhost.", dest="redirect", default=None) helpful.add( - "security", "-n", "--no-redirect", action="store_false", + "security", "--no-redirect", action="store_false", help="Do not automatically redirect all HTTP traffic to HTTPS for the newly " "authenticated vhost.", dest="redirect", default=None) helpful.add(