diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2010-10-06 17:30:37 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2010-10-06 17:30:37 +0000 |
| commit | 43cee77fb4be6f76a120f2d97ec5a73e17381df4 (patch) | |
| tree | 94a8888fea9b467480575a1e76f070a822db4bdc | |
| parent | fea159282b75130b5f6cf52ec92ddfa09467f3c9 (diff) | |
Fixed #14395 -- Fixed typo in error message in db/__init__.py. Thanks, agabel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
