Adjust importlib import

This commit is contained in:
Carlton Gibson 2015-02-17 11:22:37 +01:00
parent 4248a8d3fc
commit daf1d59d0f

View File

@ -20,7 +20,11 @@ back to the defaults.
from __future__ import unicode_literals
from django.test.signals import setting_changed
from django.conf import settings
from django.utils import importlib, six
try:
import importlib
except ImportError:
from django.utils import importlib
from django.utils import six
from rest_framework import ISO_8601