summaryrefslogtreecommitdiff
path: root/utils/fuzzy-hash-tester.py
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-08-25 21:11:27 +0200
committerMichał Górny <mgorny@gentoo.org>2020-08-25 21:11:53 +0200
commite901b9ef63529563a1a43888cd09819130e04f32 (patch)
tree5d26e7fc20de87cd586fb2d13cb70f28c438278d /utils/fuzzy-hash-tester.py
parent34f9ff10882e2e3d0fb32d4270f950d9ce6c5a50 (diff)
downloadgemato-e901b9ef63529563a1a43888cd09819130e04f32.tar.gz
Remove remaining pyblake2 uses
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'utils/fuzzy-hash-tester.py')
-rwxr-xr-xutils/fuzzy-hash-tester.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fuzzy-hash-tester.py b/utils/fuzzy-hash-tester.py
index 2d0c426..c3234cb 100755
--- a/utils/fuzzy-hash-tester.py
+++ b/utils/fuzzy-hash-tester.py
@@ -39,7 +39,7 @@ ALGORITHMS = {
functools.partial(ExternalToolHash, 'sha384sum')],
'sha512': [hashlib.sha512,
functools.partial(ExternalToolHash, 'sha512sum')],
- 'blake2b': [hashlib.blake2b, pyblake2.blake2b,
+ 'blake2b': [hashlib.blake2b, hashlib.blake2b,
functools.partial(ExternalToolHash, 'b2sum')],
}