aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-12 09:58:41 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-12 09:58:41 -0800
commite2d45452119e3992513605f2b32d37d37093abaf (patch)
treeaf97f06637ecaa0252725e0f6693ca78b4ea69c2
parent1781968c7884a0051ce9e170ce6041dd7ddcff7b (diff)
downloadcryptography-e2d45452119e3992513605f2b32d37d37093abaf.tar.gz
cryptography-e2d45452119e3992513605f2b32d37d37093abaf.tar.bz2
cryptography-e2d45452119e3992513605f2b32d37d37093abaf.zip
Also fix this module
-rw-r--r--cryptography/fernet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/fernet.py b/cryptography/fernet.py
index c19309d5..71a9fadf 100644
--- a/cryptography/fernet.py
+++ b/cryptography/fernet.py
@@ -22,8 +22,8 @@ import six
from cryptography.exceptions import InvalidSignature
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import padding, hashes
-from cryptography.hazmat.primitives.hmac import HMAC
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
+from cryptography.hazmat.primitives.hmac import HMAC
class InvalidToken(Exception):