Skip to content

Commit f89893b

Browse files
committed
verify-checksum-model.py: This is the result of the program, it should be printed to stdout.
1 parent ec9ca5b commit f89893b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/verify-checksum-models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import logging
44
import os
5+
import sys
56
import hashlib
67

78
logger = logging.getLogger("verify-checksum-models")
@@ -81,4 +82,4 @@ def sha256sum(file):
8182

8283
# Output the results as a table
8384
for r in results:
84-
logger.info(f"{r['filename']:40} {r['valid checksum']:^20} {r['file missing']:^20}")
85+
sys.stdout.write(f"{r['filename']:40} {r['valid checksum']:^20} {r['file missing']:^20}\n")

0 commit comments

Comments
 (0)