Switched to standard import_module as the Django embedded one is deprecated and will be removed in next version

This commit is contained in:
Antoine 2015-04-17 16:49:32 +01:00
parent 92ca2e33d6
commit ee55380a6c

View File

@ -1,5 +1,9 @@
from six import string_types
from django.utils.importlib import import_module
import sys
if sys.version_info < (2, 6):
from django.utils.importlib import import_module
else:
from importlib import import_module
def import_callable(path_or_callable):