1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

Fixed typo in common.py (#8881)

Fixed typo:

exterally -> externally
This commit is contained in:
Jonathan Griffin
2021-06-03 14:42:56 -06:00
committed by GitHub
parent c372dd8aee
commit 2ed4e0a17e

View File

@@ -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))