aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-15 22:18:49 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-15 22:18:49 -0800
commitf272c14e7d41d84e095f61410fc8006e99d802e7 (patch)
treee904286d6a64021a09856e13f17cf51af97d27eb /cryptography
parent4a35b7fede2d8e544abfbe9b1ea0d11231da9908 (diff)
downloadcryptography-f272c14e7d41d84e095f61410fc8006e99d802e7.tar.gz
cryptography-f272c14e7d41d84e095f61410fc8006e99d802e7.tar.bz2
cryptography-f272c14e7d41d84e095f61410fc8006e99d802e7.zip
Update import location
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/fernet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/fernet.py b/cryptography/fernet.py
index f2dd9341..8bcaa40a 100644
--- a/cryptography/fernet.py
+++ b/cryptography/fernet.py
@@ -19,7 +19,7 @@ import time
import six
-from cryptography.hazmat.bindings import default_backend
+from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import padding, hashes, constant_time
from cryptography.hazmat.primitives.hmac import HMAC
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes