Author: russellm
Date: 2010-01-06 02:16:07 -0600 (Wed, 06 Jan 2010)
New Revision: 12115

Modified:
   django/trunk/docs/releases/1.2-alpha-1.txt
   django/trunk/docs/releases/1.2.txt
Log:
Corrected yet another BACKEND/ENGINE error in the docs, this time in the 
release notes. Thanks to Jeff Croft for the report.

Modified: django/trunk/docs/releases/1.2-alpha-1.txt
===================================================================
--- django/trunk/docs/releases/1.2-alpha-1.txt  2010-01-06 06:02:31 UTC (rev 
12114)
+++ django/trunk/docs/releases/1.2-alpha-1.txt  2010-01-06 08:16:07 UTC (rev 
12115)
@@ -254,7 +254,7 @@
 example::
 
     DATABASE_NAME = 'test_db'
-    DATABASE_BACKEND = 'postgresl_psycopg2'
+    DATABASE_ENGINE = 'postgresql_psycopg2'
     DATABASE_USER = 'myusername'
     DATABASE_PASSWORD = 's3krit'
 
@@ -268,7 +268,7 @@
     DATABASES = {
         'default': {
             'NAME': 'test_db',
-            'BACKEND': 'django.db.backends.postgresl_psycopg2',
+            'ENGINE': 'django.db.backends.postgresql_psycopg2',
             'USER': 'myusername',
             'PASSWORD': 's3krit',
         }

Modified: django/trunk/docs/releases/1.2.txt
===================================================================
--- django/trunk/docs/releases/1.2.txt  2010-01-06 06:02:31 UTC (rev 12114)
+++ django/trunk/docs/releases/1.2.txt  2010-01-06 08:16:07 UTC (rev 12115)
@@ -92,7 +92,7 @@
 example::
 
     DATABASE_NAME = 'test_db'
-    DATABASE_BACKEND = 'postgresl_psycopg2'
+    DATABASE_ENGINE = 'postgresql_psycopg2'
     DATABASE_USER = 'myusername'
     DATABASE_PASSWORD = 's3krit'
 
@@ -106,7 +106,7 @@
     DATABASES = {
         'default': {
             'NAME': 'test_db',
-            'BACKEND': 'django.db.backends.postgresl_psycopg2',
+            'ENGINE': 'django.db.backends.postgresql_psycopg2',
             'USER': 'myusername',
             'PASSWORD': 's3krit',
         }
@@ -135,7 +135,7 @@
 In addition to the change in structure, Django 1.2 removes the special
 handling for the built-in database backends. All database backends
 must now be specified by a fully qualified module name (i.e.,
-``django.db.backends.postgresl_psycopg2``, rather than just
+``django.db.backends.postgresql_psycopg2``, rather than just
 ``postgresql_psycopg2``).
 
 ``__dict__`` on Model instances

-- 
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