From 28321f7a2ce998c772ccc9a59b26d796e047ec81 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 19 Jan 2010 17:33:01 -0500 Subject: Correct some comment errors --- ipalib/x509.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ipalib/x509.py') diff --git a/ipalib/x509.py b/ipalib/x509.py index b570d075..3c38a354 100644 --- a/ipalib/x509.py +++ b/ipalib/x509.py @@ -222,10 +222,9 @@ def get_subject_components(certificate, type=PEM): Load an X509.3 certificate and get the subject. Return a tuple of a certificate subject. - (('CN', u'www.example.com', ('O', u'IPA')) + (('CN', u'www.example.com'), ('O', u'IPA')) """ - # Grab the subject, reverse it, combine it and return it x509cert = load_certificate(certificate, type) return x509cert.get_subject().get_components() -- cgit