diff options
author | Terry Chia <terrycwk1994@gmail.com> | 2015-03-28 02:01:34 +0800 |
---|---|---|
committer | Terry Chia <terrycwk1994@gmail.com> | 2015-03-28 02:01:34 +0800 |
commit | 7ff9362be6e7c698da5838ab230fb084dd60cda2 (patch) | |
tree | d6b131f09a5cfef7a38d33e12dd86e77da2b6d39 | |
parent | 542be02df4d9336c876921a26a038954d84db2ef (diff) | |
download | cryptography-7ff9362be6e7c698da5838ab230fb084dd60cda2.tar.gz cryptography-7ff9362be6e7c698da5838ab230fb084dd60cda2.tar.bz2 cryptography-7ff9362be6e7c698da5838ab230fb084dd60cda2.zip |
Remove extra space.
-rw-r--r-- | docs/fernet.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst index 6ca20db9..eacbc2ae 100644 --- a/docs/fernet.rst +++ b/docs/fernet.rst @@ -94,7 +94,7 @@ has support for implementing key rotation via :class:`MultiFernet`. MultiFernet performs all encryption options using the *first* key in the ``list`` provided. MultiFernet attempts to decrypt tokens with each key in - turn . A :class:`cryptography.fernet.InvalidToken` exception is raised if + turn. A :class:`cryptography.fernet.InvalidToken` exception is raised if the correct key is not found in the ``list`` provided. Key rotation makes it easy to replace old keys. You can add your new key at |