diff --git a/certbot/certbot/_internal/snap_config.py b/certbot/certbot/_internal/snap_config.py index 58791fa01..6f7502029 100644 --- a/certbot/certbot/_internal/snap_config.py +++ b/certbot/certbot/_internal/snap_config.py @@ -12,7 +12,6 @@ from requests.adapters import HTTPAdapter from requests.exceptions import HTTPError from requests.exceptions import RequestException -import certbot from certbot.compat import os from certbot.errors import Error @@ -97,7 +96,8 @@ def prepare_env(cli_args: List[str]) -> List[str]: if len(outdated_plugins) > 0: LOGGER.error('The following plugins are using an outdated python version and must be ' 'updated to be compatible with Certbot 3.0. Please see ' - 'https://community.letsencrypt.org/t/certbot-3-0-could-have-potential-third-party-snap-breakages/226940 ' + 'https://community.letsencrypt.org/t/' + 'certbot-3-0-could-have-potential-third-party-snap-breakages/226940 ' 'for more information:') plugin_list = '\n'.join(' * {}'.format(plugin) for plugin in outdated_plugins) LOGGER.error(plugin_list)