mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 23:04:39 -04:00
whoops, ",".join instead of join
This commit is contained in:
parent
8ebdd0a8af
commit
12a1782ebe
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ def issue(session):
|
|||
return
|
||||
csr = r.hget(session, "csr")
|
||||
names = r.lrange("%s:names" % session, 0, -1)
|
||||
log("attempting to issue certificate for names: %s" % join(names), session)
|
||||
log("attempting to issue certificate for names: %s" % ", ".join(names), session)
|
||||
with issue_lock:
|
||||
cert = CSR.issue(csr, names)
|
||||
r.hset(session, "cert", cert)
|
||||
|
|
|
|||
Loading…
Reference in a new issue