mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Adjust importlib import
This commit is contained in:
parent
4248a8d3fc
commit
daf1d59d0f
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user