From 00f049b9e98e17860d7901724526231d8fa4ed25 Mon Sep 17 00:00:00 2001 From: Mohammad Ahtasham ul Hassan <60315450+aht007@users.noreply.github.com> Date: Thu, 13 Jul 2023 20:12:02 +0500 Subject: [PATCH] fix: fix course completion utility (#32734) --- openedx/core/djangoapps/credentials/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/credentials/utils.py b/openedx/core/djangoapps/credentials/utils.py index e060cf8fe1..6208fa3cae 100644 --- a/openedx/core/djangoapps/credentials/utils.py +++ b/openedx/core/djangoapps/credentials/utils.py @@ -133,7 +133,7 @@ def get_courses_completion_status(lms_user_id, course_run_ids): ) api_response = api_client.post( completion_status_url, - data={ + json={ 'lms_user_id': lms_user_id, 'course_runs': course_run_ids, }