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")