From dd5eefeda68add21940017446ffc19f4f5b64f00 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 6 Sep 2011 16:04:36 +0200 Subject: [PATCH] bugfix --- sfa/trust/certificate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/trust/certificate.py b/sfa/trust/certificate.py index c4d64348..91fcb7c6 100644 --- a/sfa/trust/certificate.py +++ b/sfa/trust/certificate.py @@ -715,7 +715,7 @@ class Certificate: # if there is no parent, then no way to verify the chain if not self.parent: - logger.debug("verify_chain: NO %s has no parent and issuer %s is not in %d trusted roots"%self.get_printable_subject(), self.get_issuer(), len(trusted_certs)) + logger.debug("verify_chain: NO %s has no parent and issuer %s is not in %d trusted roots"%(self.get_printable_subject(), self.get_issuer(), len(trusted_certs))) raise CertMissingParent(self.get_printable_subject(), "Non trusted issuer: %s out of %d trusted roots" % (self.get_issuer(), len(trusted_certs))) # if it wasn't signed by the parent... -- 2.47.0