mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 00:35:50 +02:00
whoops, ",".join instead of join
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user