summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2015-04-13 21:45:18 -0400
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2015-04-13 21:45:18 -0400
commitdf5140163bd4f3d11bc0acc11c1b2968bc2ec49f (patch)
treeac0037e9672de3576d1d2c6f27eed819b3b7b868
parentf0e74563a5c4309e6c27e46bf29ca333a04d5210 (diff)
downloadpyopenssl-df5140163bd4f3d11bc0acc11c1b2968bc2ec49f.tar.gz
Fix weird spacing change.
-rw-r--r--OpenSSL/crypto.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index 0350537..50ff74f 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -1839,18 +1839,15 @@ class CRL(object):
export a CRL as a string
:param cert: Used to sign CRL.
-
:type cert: :class:`X509`
:param key: Used to sign CRL.
-
:type key: :class:`PKey`
:param type: The export format, either :py:data:`FILETYPE_PEM`,
:py:data:`FILETYPE_ASN1`, or :py:data:`FILETYPE_TEXT`.
- :param days: The number of days until the next update of this CRL.
- :type days: :py:data:`int`
+ :param int days: The number of days until the next update of this CRL.
:param bytes digest: The name of the message digest to use (eg
``b"sha1"``).