From 777bfc4346c57a31fdf7ec381ef3e92018960946 Mon Sep 17 00:00:00 2001 From: meowmeowcat <68463158+meowmeowmeowcat@users.noreply.github.com> Date: Sat, 8 Jan 2022 12:26:32 +0800 Subject: [PATCH] Fix the message --- print-hash.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/print-hash.py b/print-hash.py index e239b5a..144ae57 100755 --- a/print-hash.py +++ b/print-hash.py @@ -7,8 +7,9 @@ blake2_256 = hashlib.blake2b(digest_size=256 // 8) file_list = os.listdir(os.path.abspath(os.getenv("INPUT_PACKAGES_DIR"))) +print("Showing hash values of files to be uploaded:") + for file in file_list: - print("Showing hash values of files to be uploaded:") print(file) print("")