From 48ef16ab0d6e05473c6daf27ec793f153bc9afc6 Mon Sep 17 00:00:00 2001 From: Florian Mutter Date: Fri, 7 Jul 2017 21:46:30 +0200 Subject: [PATCH] Align domain names output to command line input (#4874) The command line takes a comma separated list of domain names. To be able to use the list of existing domain names it would be helpful to get a list that is also comma separated. Sample use case: If you would like to add a new domain to an existing certificate you need to list all existing domain names. Makes certbot certificates use comma-separated domain names instead of space-separated. --- certbot/cert_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/cert_manager.py b/certbot/cert_manager.py index 62cbfa695..207e4d072 100644 --- a/certbot/cert_manager.py +++ b/certbot/cert_manager.py @@ -205,7 +205,7 @@ def _report_human_readable(config, parsed_certs): " Certificate Path: {3}\n" " Private Key Path: {4}".format( cert.lineagename, - " ".join(cert.names()), + ",".join(cert.names()), valid_string, cert.fullchain, cert.privkey))