Fixed #15621 -- Fixed potentially confusing error message in db backend loading. Thanks, keegan_csmith

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15871 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2011-03-17 16:57:37 +00:00
parent a0878b5f95
commit 6091f0ead3
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ def load_backend(backend_name):
and not f.startswith('.')]
except EnvironmentError:
available_backends = []
if backend_name.startswith('django.db.backends.'):
backend_name = backend_name[19:] # See #15621.
if backend_name not in available_backends:
error_msg = ("%r isn't an available database backend. \n" +
"Try using django.db.backends.XXX, where XXX is one of:\n %s\n" +