Skip to content
Snippets Groups Projects
Unverified Commit 6a77f1ff authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Fix hashlib function capitalization (#17323)

parent 60283775
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ def __init__(self, hexdigest, **kwargs):
@property
def hash_name(self):
"""Get the name of the hash function this Checker is using."""
return self.hash_fun().name
return self.hash_fun().name.lower()
def check(self, filename):
"""Read the file with the specified name and check its checksum
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment