jazkarta / edx-platform

the edX learning management system (LMS) and course authoring tool, Studio
http://code.edx.org/
GNU Affero General Public License v3.0
1 stars 0 forks source link

use django.utils.importlib instead of our own import code #48

Closed pdpinch closed 9 years ago

pdpinch commented 9 years ago

https://github.com/edx/edx-platform/pull/6636#discussion_r25147009

cguardia commented 9 years ago

importlib only provides import_module, and we need to resolve the names of field override providers, which are classes, like ccx.overrides.CustomCoursesForEdxOverrideProvider. That's why we had to add this code.

I put the above as a comment on the pull request.