Catch ImproperlyConfigured exception in compat.py (fixes #803)

This commit is contained in:
Danilo Bargen 2013-04-30 23:24:20 +02:00
parent 5d357a9b08
commit e5040fbf94

View File

@ -6,6 +6,7 @@ versions of django/python, and compatibility wrappers around optional packages.
from __future__ import unicode_literals
import django
from django.core.exceptions import ImproperlyConfigured
# Try to import six from Django, fallback to included `six`.
try:
@ -473,7 +474,7 @@ except ImportError:
try:
import oauth_provider
from oauth_provider.store import store as oauth_provider_store
except ImportError:
except (ImportError, ImproperlyConfigured):
oauth_provider = None
oauth_provider_store = None