Fixes to mgmt cmds which delete django-simple-history data.

This commit is contained in:
John Eskew
2017-10-18 09:15:37 -04:00
parent eb99657770
commit 41aaaab584
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ microsite_configuration_historicalmicrositetemplate
"""
import logging
from common.djangoapps.microsite_configuration.models import MicrositeOrganizationMapping, MicrositeTemplate
from microsite_configuration.models import MicrositeOrganizationMapping, MicrositeTemplate
from openedx.core.djangoapps.util.row_delete import delete_rows, BaseDeletionCommand
log = logging.getLogger(__name__)

View File

@@ -3,7 +3,7 @@ Command to delete all rows from the verify_student_historicalverificationdeadlin
"""
import logging
from verify_student.models import VerificationDeadline
from lms.djangoapps.verify_student.models import VerificationDeadline
from openedx.core.djangoapps.util.row_delete import delete_rows, BaseDeletionCommand
log = logging.getLogger(__name__)