From 5e0bbdf419ed52878488f1a2ea6a99fa714205a1 Mon Sep 17 00:00:00 2001 From: Steven Crawford Date: Thu, 12 Dec 2024 13:10:49 -0600 Subject: [PATCH] updates --- split_zip_into_smaller_chunks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/split_zip_into_smaller_chunks.py b/split_zip_into_smaller_chunks.py index 4978007..f975b57 100755 --- a/split_zip_into_smaller_chunks.py +++ b/split_zip_into_smaller_chunks.py @@ -70,7 +70,7 @@ def split_zip(input_zip_path, output_folder, max_group_size): with BytesIO(source_zip.read(member)) as file_content: # Check if adding this file would exceed the maximum group size if (group_size + len(file_content.getvalue())) > max_group_size: - print(f'\r{file_name}-group_{group_number}.zip done.', end="\n") + print(f'\r{file_name}-group_{group_number}.zip done. ', end="\r\n") group_number += 1 group_size = 0 # i = 0