Fixed #8706 -- Improved the way we detect available database backends.

Thanks, victor@egenix.com.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9930 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2009-03-01 07:12:38 +00:00
parent 152d517878
commit 238477f90c
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ except ImportError, e:
# listing all possible (built-in) database backends.
backend_dir = os.path.join(__path__[0], 'backends')
try:
available_backends = [f for f in os.listdir(backend_dir) if not f.startswith('_') and not f.startswith('.') and not f.endswith('.py') and not f.endswith('.pyc')]
available_backends = [f for f in os.listdir(backend_dir)
if os.path.isdir(os.path.join(backend_dir, f))]
except EnvironmentError:
available_backends = []
available_backends.sort()