From 8a4dee8e732d23f107ec712d86f8d6878fd7dffd Mon Sep 17 00:00:00 2001 From: vangef Date: Mon, 26 Feb 2024 21:09:01 +0000 Subject: [PATCH] rephrasing msg to be more precise / clear --- utils/organiser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/organiser.py b/utils/organiser.py index 2ccac31..668f833 100644 --- a/utils/organiser.py +++ b/utils/organiser.py @@ -120,6 +120,6 @@ def check_submissions_dir_for_compressed(submissions_dir: str) -> None: if compressed_files: compressed_files_str = '\n'.join(compressed_files) - print(f'\n[Warning] One or more compressed files from the gradebook contain compressed file(s) inside ({len(compressed_files)} found in total)') - print('\nSee below the organised per student compressed files, and extract them manually:\n') + print(f'\n[Warning] One or more compressed files found in the extracted and organised submission files ({len(compressed_files)} found in total)') + print('\nSee below the organised per student compressed files, and extract them manually if necessary:\n') print(compressed_files_str)