summaryrefslogtreecommitdiff
path: root/django/db/__init__.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-11-13 05:02:45 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-11-13 05:02:45 +0000
commitab6fd7328ff835cfe969524d778d363440ca8d97 (patch)
tree74465c07fcec7a75671c2f42807742049365f6c3 /django/db/__init__.py
parent83c40fb92230c6c8d6977ad5fc05eb7ac5faba6b (diff)
Fixed typo in 'incorrect backend' database error message
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4067 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/__init__.py')
-rw-r--r--django/db/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/__init__.py b/django/db/__init__.py
index e5b4d32e0b..4176b5aa79 100644
--- a/django/db/__init__.py
+++ b/django/db/__init__.py
@@ -18,7 +18,7 @@ except ImportError, e:
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.sort()
if settings.DATABASE_ENGINE not in available_backends:
- raise ImproperlyConfigured, "%r isn't an available database backend. vailable options are: %s" % \
+ raise ImproperlyConfigured, "%r isn't an available database backend. Available options are: %s" % \
(settings.DATABASE_ENGINE, ", ".join(map(repr, available_backends)))
else:
raise # If there's some other error, this must be an error in Django itself.