From 4b8a391a3bd4eb605d999515c904840d7c72e97e Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 28 Oct 2010 12:15:05 +0000 Subject: [PATCH] [1.2.X] Fixed #14395 -- Fixed typo in error message in db/__init__.py. Thanks, agabel Backport of r13990 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14381 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/__init__.py b/django/db/__init__.py index 4c4faef694..7136b2f258 100644 --- a/django/db/__init__.py +++ b/django/db/__init__.py @@ -32,7 +32,7 @@ if not settings.DATABASES: } if DEFAULT_DB_ALIAS not in settings.DATABASES: - raise ImproperlyConfigured("You must default a '%s' database" % DEFAULT_DB_ALIAS) + raise ImproperlyConfigured("You must define a '%s' database" % DEFAULT_DB_ALIAS) for alias, database in settings.DATABASES.items(): if 'ENGINE' not in database: