diff --git a/print-hash.py b/print-hash.py index 42db92e..499ef63 100755 --- a/print-hash.py +++ b/print-hash.py @@ -10,12 +10,12 @@ for file_object in packages_dir.iterdir(): sha256 = hashlib.sha256() md5 = hashlib.md5() blake2_256 = hashlib.blake2b(digest_size=256 // 8) - + print(file_object) print("") content = file_object.read_bytes() - + sha256.update(content) md5.update(content) blake2_256.update(content)