From 9cf533f87c99dba69dcb364584b258c3bdad4149 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Mon, 18 Sep 2023 15:54:19 -0400 Subject: [PATCH] capitalize --- app/api/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/tasks.py b/app/api/tasks.py index b80bb90a..9cb56c4b 100644 --- a/app/api/tasks.py +++ b/app/api/tasks.py @@ -436,7 +436,7 @@ class TaskAssetsImport(APIView): byte_offset = int(byte_offset) total_chunk_count = int(total_chunk_count) except ValueError: - raise exceptions.ValidationError(detail="some parameters are not integers") + raise exceptions.ValidationError(detail="Some parameters are not integers") uuid = re.sub('[^0-9a-zA-Z-]+', "", uuid) tmp_upload_file = os.path.join(settings.FILE_UPLOAD_TEMP_DIR, f"{uuid}.upload")