From 5c773af571c180aae46221471b4891454d87727e Mon Sep 17 00:00:00 2001 From: Starnakin Date: Sun, 4 May 2025 18:35:56 +0200 Subject: [PATCH] copy use 0 padding --- tools/copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/copy.py b/tools/copy.py index c3db6db..7cdcb22 100644 --- a/tools/copy.py +++ b/tools/copy.py @@ -42,7 +42,7 @@ def main(): hash: str = hashlib.sha256(image_data).hexdigest() if copy_info.get(hash) is None: - new_name: str = str(len(copy_info)) + new_name: str = f"{len(copy_info):05d}" path: str = os.path.join(output_folder, new_name) os.makedirs(path)