From 6306400102cbb99b4b9434712574c8eb06e6ad23 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 20 Sep 2007 02:02:21 +0000 Subject: [PATCH] Fixed #5544 -- Fixed another typo in documentation, introduced as a result of the changes in [6333] and [6365]. Thanks for the report, xiaolianyi@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6384 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/sessions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sessions.txt b/docs/sessions.txt index 7fc607bb13..96e8d36854 100644 --- a/docs/sessions.txt +++ b/docs/sessions.txt @@ -205,7 +205,7 @@ An API is available to manipulate session data outside of a view:: datetime.datetime(2005, 8, 20, 13, 35, 0) >>> s.save() -If you're using the ``django.contrib.sessions.engine.db`` backend, each +If you're using the ``django.contrib.sessions.backends.db`` backend, each session is just a normal Django model. The ``Session`` model is defined in ``django/contrib/sessions/models.py``. Because it's a normal model, you can access sessions using the normal Django database API::