From 2bd1c5104a7a55715db93157e4f6a657a4f2a154 Mon Sep 17 00:00:00 2001 From: Oscar Mattsson Date: Thu, 3 Mar 2022 13:23:13 +0100 Subject: Changed load_crl doc comment return to CRL (#1105) --- src/OpenSSL/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py index 5b09d10..51713b6 100644 --- a/src/OpenSSL/crypto.py +++ b/src/OpenSSL/crypto.py @@ -3081,7 +3081,7 @@ def load_crl(type, buffer): :param type: The file type (one of FILETYPE_PEM, FILETYPE_ASN1) :param buffer: The buffer the CRL is stored in - :return: The PKey object + :return: The CRL object """ if isinstance(buffer, str): buffer = buffer.encode("ascii") -- cgit v1.2.1