From 2ed4e0a17e784eed8f20bb5c05122f012a5e3c85 Mon Sep 17 00:00:00 2001 From: Jonathan Griffin Date: Thu, 3 Jun 2021 14:42:56 -0600 Subject: [PATCH] Fixed typo in common.py (#8881) Fixed typo: exterally -> externally --- certbot/certbot/plugins/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/plugins/common.py b/certbot/certbot/plugins/common.py index 3181d7b50..3bdeba8f4 100644 --- a/certbot/certbot/plugins/common.py +++ b/certbot/certbot/plugins/common.py @@ -119,7 +119,7 @@ class Plugin: # This is a fallback hint. Authenticators should implement their own auth_hint that # addresses the specific mechanics of that authenticator. challs = " and ".join(sorted({achall.typ for achall in failed_achalls})) - return ("The Certificate Authority couldn't exterally verify that the {name} plugin " + return ("The Certificate Authority couldn't externally verify that the {name} plugin " "completed the required {challs} challenges. Ensure the plugin is configured " "correctly and that the changes it makes are accessible from the internet." .format(name=self.name, challs=challs))