From d443fd9074740e25900fd9df9b6de643b272462f Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Thu, 14 May 2015 12:06:21 -0700 Subject: [PATCH] Explicit "is not None" --- letsencrypt/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client.py b/letsencrypt/client.py index 60d87cb6d..e7c6310eb 100644 --- a/letsencrypt/client.py +++ b/letsencrypt/client.py @@ -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: