diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-11 12:25:00 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-15 15:49:49 -0600 |
commit | d9fc7252f9470f6f9f6c05047e2fcf1c5c34667a (patch) | |
tree | d65acfb45b3879c4b815d9f498fb2fa5e55361ac /docs/hazmat | |
parent | 71f4c163367e9915db52499ddda6df654ae374cb (diff) | |
download | cryptography-d9fc7252f9470f6f9f6c05047e2fcf1c5c34667a.tar.gz cryptography-d9fc7252f9470f6f9f6c05047e2fcf1c5c34667a.tar.bz2 cryptography-d9fc7252f9470f6f9f6c05047e2fcf1c5c34667a.zip |
change it to not_valid_* why not
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index fee50467..8e86546d 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -733,14 +733,14 @@ X509 The public key associated with the certificate. - .. attribute:: not_before + .. attribute:: not_valid_before :type: :class:`datetime.datetime` A naïve datetime representing the beginning of the validity period for the certificate in UTC. This value is inclusive. - .. attribute:: not_after + .. attribute:: not_valid_after :type: :class:`datetime.datetime` |