Skip to content

Commit 89eadce

Browse files
committed
fix tests
1 parent f818619 commit 89eadce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/hmac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def copy(self):
129129
other.digest_size = self.digest_size
130130
if self._hmac:
131131
other._hmac = self._hmac.copy()
132-
if hasattr(self, '_inner'):
132+
if hasattr(other, '_inner'):
133133
del other._inner
134134
if hasattr(other, '_outer'):
135135
del other._outer

0 commit comments

Comments
 (0)