Fix quotes

This commit is contained in:
Jakub Warmuz 2015-03-26 13:59:33 +00:00
parent ff532469a5
commit 03383c3824
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 3 additions and 3 deletions

View file

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

View file

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