summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-09-19 23:32:53 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-09-19 23:32:53 +0000
commitd022e2581d444bb17f8236bc83d33c003f75888e (patch)
tree046ca865c6e9e6ec8932fdf100575a4a93badfc8 /docs
parent5c55cc83a78e1ae9604e3c90dee8d434059025e2 (diff)
Fixed #5544 -- Fixed 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@6377 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/sessions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sessions.txt b/docs/sessions.txt
index ab7ea56aaa..7fc607bb13 100644
--- a/docs/sessions.txt
+++ b/docs/sessions.txt
@@ -198,7 +198,7 @@ Using sessions out of views
An API is available to manipulate session data outside of a view::
- >>> from django.contrib.sessions.engines.db import SessionStore
+ >>> from django.contrib.sessions.backends.db import SessionStore
>>> s = SessionStore(session_key='2b1189a188b44ad18c35e113ac6ceead')
>>> s['last_login'] = datetime.datetime(2005, 8, 20, 13, 35, 10)
>>> s['last_login']