From 5957052acb5778198ae3601ef4056883bca2c240 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Mon, 28 Dec 2009 13:13:04 +0000 Subject: [PATCH] Corrected bad example for DATABASES setting git-svn-id: http://code.djangoproject.com/svn/django/trunk@12010 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/settings.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 8cbc9ccc8f..daedc87d21 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -219,7 +219,7 @@ SQLite. This can be configured using the following:: DATABASES = { 'default': { - 'BACKEND': 'django.db.backends.sqlite3', + 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'mydatabase' } }