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.
This commit is contained in:
Florian Mutter
2017-07-07 12:46:30 -07:00
committed by ohemorange
parent d0ecf739bd
commit 48ef16ab0d
+1 -1
View File
@@ -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))