mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
authz -> authzr
This commit is contained in:
parent
8ec6b7c6e2
commit
3e0b3beebd
1 changed files with 2 additions and 2 deletions
|
|
@ -353,8 +353,8 @@ class Client(object): # pylint: disable=too-many-instance-attributes
|
|||
for chall in authzr.body.challenges:
|
||||
if chall.error != None:
|
||||
raise Exception("failed challenge for %s: %s" %
|
||||
(authz.body.identifier.value, chall.error))
|
||||
raise Exception("failed authorization: %s" % authz.body)
|
||||
(authzr.body.identifier.value, chall.error))
|
||||
raise Exception("failed authorization: %s" % authzr.body)
|
||||
latest = self._order_resource_from_response(self.net.get(orderr.uri), uri=orderr.uri)
|
||||
self.net.post(latest.body.finalize, messages.CertificateRequest(csr=orderr.csr))
|
||||
while datetime.datetime.now() < deadline:
|
||||
|
|
|
|||
Loading…
Reference in a new issue