Author: russellm
Date: 2010-10-28 07:15:05 -0500 (Thu, 28 Oct 2010)
New Revision: 14381

Modified:
   django/branches/releases/1.2.X/django/db/__init__.py
Log:
[1.2.X] Fixed #14395 -- Fixed typo in error message in db/__init__.py. Thanks, 
agabel

Backport of r13990 from trunk.

Modified: django/branches/releases/1.2.X/django/db/__init__.py
===================================================================
--- django/branches/releases/1.2.X/django/db/__init__.py        2010-10-28 
11:58:51 UTC (rev 14380)
+++ django/branches/releases/1.2.X/django/db/__init__.py        2010-10-28 
12:15:05 UTC (rev 14381)
@@ -32,7 +32,7 @@
     }
 
 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:

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to