From 488c04830c9dbc876d1a344ea51015ad6a19dd1c Mon Sep 17 00:00:00 2001 From: Thom Dixon Date: Fri, 18 May 2018 03:55:29 -0700 Subject: Make AuthorityKeyIdentifier docs reflect reality (#4252) The `AuthorityKeyIdentifier.authority_cert_issuer` docs state that it returns a `Name` instance, but it [actually returns a list of `GeneralName` instances or `None`](https://github.com/pyca/cryptography/blob/master/src/cryptography/x509/extensions.py#L157). --- docs/x509/reference.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/x509') diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 279c4c74..7a41e1f3 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1713,7 +1713,7 @@ X.509 Extensions .. attribute:: authority_cert_issuer - :type: :class:`Name` or None + :type: A list of :class:`GeneralName` instances or None The :class:`Name` of the issuer's issuer. -- cgit v1.2.3