From 27f0ba2633edb667c3e278b636569698aa451284 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Sat, 29 Nov 2014 17:11:03 -0800 Subject: [PATCH] Missed this change in one of pulls --- letsencrypt/client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client/client.py b/letsencrypt/client/client.py index 2adc7f1ce..9df815fc2 100644 --- a/letsencrypt/client/client.py +++ b/letsencrypt/client/client.py @@ -130,7 +130,7 @@ class Client(object): _, csr_der = self.get_key_csr_pem() # TODO: Handle this exception/problem - if not crypto_util.csr_matches_names(self.csr_file, self.names): + if not crypto_util.csr_matches_names(self.csr, self.names): raise errrors.LetsEncryptClientError( "CSR subject does not contain one of the specified names")