Commit 8fdec439 by Han Su Kim

Changing over imports to opaque_keys.edx

parent 0b93c5a8
"""Django management command to force certificate regeneration for one user""" """Django management command to force certificate regeneration for one user"""
from optparse import make_option from optparse import make_option
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from opaque_keys import InvalidKeyError from opaque_keys import InvalidKeyError
from xmodule.modulestore.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from xmodule.modulestore.locations import SlashSeparatedCourseKey from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xmodule.course_module import CourseDescriptor
from certificates.queue import XQueueCertInterface
from xmodule.course_module import CourseDescriptor from xmodule.course_module import CourseDescriptor
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
from certificates.queue import XQueueCertInterface
class Command(BaseCommand): class Command(BaseCommand):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment