aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-29 12:54:53 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-29 12:54:53 -0600
commit831c04b669a8a2723c92407c029909850365db09 (patch)
tree9be59f791628ee70e62a3481ae16827b7ef2766d
parent298e533e01053a5fc1ba00ba640a3daf128d1151 (diff)
downloadcryptography-831c04b669a8a2723c92407c029909850365db09.tar.gz
cryptography-831c04b669a8a2723c92407c029909850365db09.tar.bz2
cryptography-831c04b669a8a2723c92407c029909850365db09.zip
called -> used
-rw-r--r--cryptography/hazmat/primitives/kdf/pbkdf2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/kdf/pbkdf2.py b/cryptography/hazmat/primitives/kdf/pbkdf2.py
index 2c8dd541..c08e7d9a 100644
--- a/cryptography/hazmat/primitives/kdf/pbkdf2.py
+++ b/cryptography/hazmat/primitives/kdf/pbkdf2.py
@@ -44,7 +44,7 @@ class PBKDF2HMAC(object):
def derive(self, key_material):
if self._used:
- raise AlreadyFinalized("PBKDF2 instances can only be called once")
+ raise AlreadyFinalized("PBKDF2 instances can only be used once")
self._used = True
if isinstance(key_material, six.text_type):