Author: adrian
Date: 2010-10-06 12:30:37 -0500 (Wed, 06 Oct 2010)
New Revision: 13990

Modified:
   django/trunk/django/db/__init__.py
Log:
Fixed #14395 -- Fixed typo in error message in db/__init__.py. Thanks, agabel

Modified: django/trunk/django/db/__init__.py
===================================================================
--- django/trunk/django/db/__init__.py  2010-10-06 15:02:26 UTC (rev 13989)
+++ django/trunk/django/db/__init__.py  2010-10-06 17:30:37 UTC (rev 13990)
@@ -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