mirror of
https://github.com/certbot/certbot.git
synced 2026-04-26 00:30:15 -04:00
fix typo
This commit is contained in:
parent
4a892b0e02
commit
036e7f3bed
1 changed files with 1 additions and 1 deletions
|
|
@ -127,7 +127,7 @@ def makechallenge(session):
|
|||
# is not an inherent protocol requirement!)
|
||||
names = r.lrange("%s:names" % session, 0, -1)
|
||||
if debug: print "%s: new session (request complies with policy)" % session
|
||||
if debug: print "%s: from requesting client at %s" % r.hget(session, "client-addr")
|
||||
if debug: print "%s: from requesting client at %s" % (session, r.hget(session, "client-addr"))
|
||||
if debug: print "%s: for %d names: %s" % (session, len(names), ",".join(names))
|
||||
for i, name in enumerate(names):
|
||||
challenge = "%s:%d" % (session, i)
|
||||
|
|
|
|||
Loading…
Reference in a new issue