mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 16:19:13 +02:00
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:
committed by
ohemorange
parent
d0ecf739bd
commit
48ef16ab0d
@@ -205,7 +205,7 @@ def _report_human_readable(config, parsed_certs):
|
|||||||
" Certificate Path: {3}\n"
|
" Certificate Path: {3}\n"
|
||||||
" Private Key Path: {4}".format(
|
" Private Key Path: {4}".format(
|
||||||
cert.lineagename,
|
cert.lineagename,
|
||||||
" ".join(cert.names()),
|
",".join(cert.names()),
|
||||||
valid_string,
|
valid_string,
|
||||||
cert.fullchain,
|
cert.fullchain,
|
||||||
cert.privkey))
|
cert.privkey))
|
||||||
|
|||||||
Reference in New Issue
Block a user