summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOscar Mattsson <oscar@storedsafe.com>2022-03-03 13:23:13 +0100
committerGitHub <noreply@github.com>2022-03-03 07:23:13 -0500
commit2bd1c5104a7a55715db93157e4f6a657a4f2a154 (patch)
tree5c74fafc0b7f3fe8fdce425f35ee28e44405a9c8
parentf1d46d80d6731da2b5135d927f3a9d791802c9bf (diff)
downloadpyopenssl-2bd1c5104a7a55715db93157e4f6a657a4f2a154.tar.gz
Changed load_crl doc comment return to CRL (#1105)
-rw-r--r--src/OpenSSL/crypto.py2
1 files changed, 1 insertions, 1 deletions
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")