From cde3e1fa9774d508159812b96dc56b2f302d16e0 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 29 Sep 2021 10:29:49 -0700 Subject: [PATCH] fix typo in error message (#9047) --- certbot/certbot/_internal/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/_internal/main.py b/certbot/certbot/_internal/main.py index c26cc7b9f..3301c72c8 100644 --- a/certbot/certbot/_internal/main.py +++ b/certbot/certbot/_internal/main.py @@ -158,7 +158,7 @@ def _handle_unexpected_key_type_migration(config: configuration.NamespaceConfig, if new_key_type != cur_key_type: msg = ('Are you trying to change the key type of the certificate named {0} ' 'from {1} to {2}? Please provide both --cert-name and --key-type on ' - 'the command line confirm the change you are trying to make.') + 'the command line to confirm the change you are trying to make.') msg = msg.format(cert.lineagename, cur_key_type, new_key_type) raise errors.Error(msg)