chore: fixed typos

This commit is contained in:
Emad Rad
2025-12-10 11:35:50 +01:00
committed by Feanil Patel
parent b76595d610
commit 6a046ebe50
8 changed files with 13 additions and 13 deletions

View File

@@ -123,7 +123,7 @@ class CourseRunViewSet(viewsets.GenericViewSet): # lint-amnesty, pylint: disabl
**Response Values**
If the request parameters are valid and a course has been cloned
succesfully, an HTTP 201 "Created" response is returned.
successfully, an HTTP 201 "Created" response is returned.
If source course id and/or destination course id are invalid, or
source course doesn't exist, or destination course already exist,

View File

@@ -177,7 +177,7 @@ class Command(BaseCommand):
logging.exception('Error indexing course %s due to the error: %s.', course_key, exc)
t = time() - start
logging.warning(f'{success} of {total} courses reindexed succesfully. Total running time: {t:.1f} seconds.')
logging.warning(f'{success} of {total} courses reindexed successfully. Total running time: {t:.1f} seconds.')
if errors:
logging.warning('Reindex failed for %s courses:', len(errors))
for course_key in errors: