From 03383c38241bbb4fb0b7b1c438c5652937c8140d Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Thu, 26 Mar 2015 13:59:33 +0000 Subject: [PATCH] Fix quotes --- letsencrypt/client/client.py | 4 ++-- letsencrypt/scripts/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/letsencrypt/client/client.py b/letsencrypt/client/client.py index a448c10ce..01f5e1c80 100644 --- a/letsencrypt/client/client.py +++ b/letsencrypt/client/client.py @@ -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 diff --git a/letsencrypt/scripts/main.py b/letsencrypt/scripts/main.py index d3c2318d6..d51288c3a 100644 --- a/letsencrypt/scripts/main.py +++ b/letsencrypt/scripts/main.py @@ -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: