mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Fix syntax
This commit is contained in:
parent
400a174d5a
commit
abc78641ea
1 changed files with 2 additions and 1 deletions
|
|
@ -177,10 +177,11 @@ class Client(object): # pylint: disable=too-many-instance-attributes
|
|||
return authzr
|
||||
|
||||
def _order_resource_from_response(self, response, uri=None):
|
||||
body = messages.Order.from_json(response.json()),
|
||||
body = messages.Order.from_json(response.json())
|
||||
authorizations = []
|
||||
for url in body.authorizations:
|
||||
authorizations.append(self._authzr_from_response(self.net.get(url)))
|
||||
fullchain_pem = None
|
||||
if body.certificate is not None:
|
||||
certificate_response = self.net.get(body.certificate, content_type=None)
|
||||
if certificate_response.ok:
|
||||
|
|
|
|||
Loading…
Reference in a new issue