Replaced an ImportError with ImproperlyConfigured in the Oracle backend.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14855 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ian Kelly 2010-12-08 07:56:43 +00:00
parent 3863c906ce
commit b8c368feb2
1 changed files with 5 additions and 2 deletions

View File

@ -18,8 +18,11 @@ def _setup_environment(environ):
if platform.system().upper().startswith('CYGWIN'):
try:
import ctypes
except ImportError:
raise ImportError("ctypes not found. The Oracle backend requires ctypes to operate correctly under Cygwin.")
except ImportError, e:
from django.core.exceptions import ImproperlyConfigured
raise ImproperlyConfigured("Error loading ctypes: %s; "
"the Oracle backend requires ctypes to "
"operate correctly under Cygwin." % e)
kernel32 = ctypes.CDLL('kernel32')
for name, value in environ:
kernel32.SetEnvironmentVariableA(name, value)