mirror of
https://github.com/certbot/certbot.git
synced 2026-06-11 09:40:41 -04:00
Fix quotes
This commit is contained in:
parent
ff532469a5
commit
03383c3824
2 changed files with 3 additions and 3 deletions
|
|
@ -28,7 +28,7 @@ from letsencrypt.client.display import ops as display_ops
|
|||
from letsencrypt.client.display import enhancements
|
||||
|
||||
|
||||
SETUPTOOLS_AUTHENTICATORS_ENTRY_POINT = 'letsencrypt.authenticators'
|
||||
SETUPTOOLS_AUTHENTICATORS_ENTRY_POINT = "letsencrypt.authenticators"
|
||||
"""Setuptools entry point group name for Authenticator plugins."""
|
||||
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ def init_auths(config):
|
|||
zope.interface.verify.verifyObject(interfaces.IAuthenticator, auth)
|
||||
except zope.interface.exceptions.BrokenImplementation:
|
||||
logging.debug(
|
||||
'"%s" object does not provide IAuthenticator, skipping',
|
||||
"%r object does not provide IAuthenticator, skipping",
|
||||
entrypoint.name)
|
||||
else:
|
||||
auths[auth] = entrypoint.name
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ def main(): # pylint: disable=too-many-branches, too-many-statements
|
|||
display_eula()
|
||||
|
||||
all_auths = client.init_auths(config)
|
||||
logging.debug('Initialized authenticators: %s', all_auths)
|
||||
logging.debug('Initialized authenticators: %s', all_auths.values())
|
||||
try:
|
||||
auth = client.determine_authenticator(all_auths.keys())
|
||||
except errors.LetsEncryptClientError:
|
||||
|
|
|
|||
Loading…
Reference in a new issue