mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Explicit "is not None"
This commit is contained in:
parent
fc81f18864
commit
d443fd9074
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ class Client(object):
|
|||
|
||||
cert_pem = certr.body.as_pem()
|
||||
chain_pem = None
|
||||
if certr.cert_chain_uri:
|
||||
if certr.cert_chain_uri is not None:
|
||||
chain_pem = self.network.fetch_chain(certr)
|
||||
|
||||
if chain_pem is None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue