diff --git a/certbot-apache/certbot_apache/display_ops.py b/certbot-apache/certbot_apache/display_ops.py index 6bcb64dd5..7578accd4 100644 --- a/certbot-apache/certbot_apache/display_ops.py +++ b/certbot-apache/certbot_apache/display_ops.py @@ -88,10 +88,11 @@ def _vhost_menu(domain, vhosts): choices, help_label="More Info", ok_label="Select", force_interactive=True) except errors.MissingCommandlineFlag: - msg = ("Encountered vhost ambiguity but unable to ask for user guidance in " - "non-interactive mode. Currently Certbot needs each vhost to be " - "in its own conf file, and may need vhosts to be explicitly " - "labelled with ServerName or ServerAlias directives.") + msg = ( + "Encountered vhost ambiguity but unable to ask for user " + "guidance in non-interactive mode. Certbot may need " + "vhosts to be explicitly labelled with ServerName or " + "ServerAlias directives.") logger.warning(msg) raise errors.MissingCommandlineFlag(msg)