From 9ae36152e8d45587341631ba2bf2414319f9856b Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Thu, 6 Oct 2016 22:18:04 -0400 Subject: [PATCH] Have core module use common's JsonResponse utility instead of LMS's. --- openedx/core/djangoapps/credit/api/provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/credit/api/provider.py b/openedx/core/djangoapps/credit/api/provider.py index 9410009315..453163d2e3 100644 --- a/openedx/core/djangoapps/credit/api/provider.py +++ b/openedx/core/djangoapps/credit/api/provider.py @@ -9,7 +9,6 @@ import uuid import pytz from django.db import transaction -from lms.djangoapps.django_comment_client.utils import JsonResponse from edx_proctoring.api import get_last_exam_completion_date from openedx.core.djangoapps.credit.exceptions import ( UserIsNotEligible, @@ -31,6 +30,7 @@ from student.models import ( ) from openedx.core.djangoapps.credit.signature import signature, get_shared_secret_key from util.date_utils import to_timestamp +from util.json_request import JsonResponse # TODO: Cleanup this mess! ECOM-2908