aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 20:26:24 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 20:26:24 -0500
commitf4c59767cdfe7716c82a72b00baa427637b505bd (patch)
treefebc087d21873d764c7701a18f79cf4eef649f9c /cryptography
parent360e2d53190fa612eccd3ae43c7cd3c240282a7a (diff)
downloadcryptography-f4c59767cdfe7716c82a72b00baa427637b505bd.tar.gz
cryptography-f4c59767cdfe7716c82a72b00baa427637b505bd.tar.bz2
cryptography-f4c59767cdfe7716c82a72b00baa427637b505bd.zip
more backend renames from merged commits
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/primitives/hashes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/primitives/hashes.py b/cryptography/primitives/hashes.py
index 474dc167..4cd68adc 100644
--- a/cryptography/primitives/hashes.py
+++ b/cryptography/primitives/hashes.py
@@ -40,7 +40,7 @@ class BaseHash(six.with_metaclass(abc.ABCMeta)):
self._backend.update_hash_context(self._ctx, data)
def copy(self):
- return self.__class__(api=self._api, ctx=self._copy_ctx())
+ return self.__class__(backend=self._backend, ctx=self._copy_ctx())
def digest(self):
return self._backend.finalize_hash_context(self._copy_ctx(),