Skip to content

Commit c6903af

Browse files
committed
glitch
1 parent 8b7eafc commit c6903af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def print_hashes(files):
3333
sha1 = compute_hash(file, hashlib.sha1)
3434
sha256 = compute_hash(file, hashlib.sha256)
3535
name = Path(file).name.ljust(33)
36-
size = f"{Path(file).stat().st_size:,} Bytes".replace(",", " ").ljust(20)
36+
size = f"{Path(file).stat().st_size:,} Bytes".replace(",", " ").rjust(20)
3737
blake2b = compute_hash(file, hashlib.blake2b, digest_size=32)
3838
print(f"{md5} | {sha1} | {sha256} | {name} | {size} | {blake2b}")
3939

0 commit comments

Comments
 (0)