From c7128a20f073e173579bc8694920f64f36397a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20K=C3=BCnzel?= <simonk@fsmpi.rwth-aachen.de> Date: Sat, 28 Jun 2025 21:05:46 +0200 Subject: [PATCH] Fix date format explanation --- job_controller/jobs/source_file_sorter/job.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/job_controller/jobs/source_file_sorter/job.py b/job_controller/jobs/source_file_sorter/job.py index 12b2859..3a46f3c 100644 --- a/job_controller/jobs/source_file_sorter/job.py +++ b/job_controller/jobs/source_file_sorter/job.py @@ -161,8 +161,8 @@ def _sort_file(session: SessionDb, own_job_id: int, db_path: str, on_transaction _STANDARD_FORMAT_EXPLANATION = ("The file's name must have the following format: " "'<course handle>.<lecture date>.optional_tag.mp4' where the date is " - "YYYYMMDD, there is an optional tag and the file ending is arbitrary. No tag is " - "equivalent to an empty tag. Example: '24ss-malo.20240730.1080p.mp4'") + "YYMMDD, there is an optional tag and the file ending is arbitrary. No tag is " + "equivalent to an empty tag. Example: '24ss-malo.240624.mp4', '24ss-malo.240730.1080p.mp4'") parts = file.name.split(".") if len(parts) not in [3, 4]: -- GitLab