mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-02 20:54:42 +03:00
Merge branch 'master' into 2.3
This commit is contained in:
commit
75b2afcb23
|
@ -6,6 +6,7 @@ versions of django/python, and compatibility wrappers around optional packages.
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import django
|
import django
|
||||||
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|
||||||
# Try to import six from Django, fallback to included `six`.
|
# Try to import six from Django, fallback to included `six`.
|
||||||
try:
|
try:
|
||||||
|
@ -477,7 +478,7 @@ except ImportError:
|
||||||
try:
|
try:
|
||||||
import oauth_provider
|
import oauth_provider
|
||||||
from oauth_provider.store import store as oauth_provider_store
|
from oauth_provider.store import store as oauth_provider_store
|
||||||
except ImportError:
|
except (ImportError, ImproperlyConfigured):
|
||||||
oauth_provider = None
|
oauth_provider = None
|
||||||
oauth_provider_store = None
|
oauth_provider_store = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user