mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
We also need .as_pem() for the chain in this method
This commit is contained in:
parent
29146d1225
commit
eaa0bae45f
1 changed files with 3 additions and 0 deletions
|
|
@ -152,6 +152,9 @@ class Client(object):
|
|||
# XXX: just to stop RenewableCert from complaining; this is
|
||||
# probably not a good solution
|
||||
chain_pem = ""
|
||||
else:
|
||||
chain_pem = chain_pem.as_pem()
|
||||
|
||||
return cert_pem, cert_key.pem, chain_pem
|
||||
|
||||
def obtain_and_enroll_certificate(self, domains, csr=None):
|
||||
|
|
|
|||
Loading…
Reference in a new issue