Opened 17 years ago

Closed 17 years ago

#5544 closed (fixed)

django.contrib.sessions.engines.db isn't exist

Reported by: xiaolianyi@… Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

http://www.djangoproject.com/documentation/sessions/

in Using sessions out of views

has a little wrong,

from django.contrib.sessions.engines.db import SessionStore

this doesn't work

replace it with

from django.contrib.sessions.backends.db import SessionStore

it work

Attachments (1)

5544.diff (999 bytes ) - added by Adam Vandenberg 17 years ago.

Download all attachments as: .zip

Change History (5)

by Adam Vandenberg, 17 years ago

Attachment: 5544.diff added

comment:1 by Adam Vandenberg, 17 years ago

Has patch: set

comment:2 by Russell Keith-Magee, 17 years ago

Resolution: fixed
Status: newclosed

(In [6377]) Fixed #5544 -- Fixed typo in documentation, introduced as a result of the changes in [6333] and [6365]. Thanks for the report, xiaolianyi@….

comment:3 by anonymous, 17 years ago

Resolution: fixed
Status: closedreopened

There is a 2nd module mistake just a couple lines down from the fixed one.

comment:4 by Russell Keith-Magee, 17 years ago

Resolution: fixed
Status: reopenedclosed

(In [6384]) Fixed #5544 -- Fixed another typo in documentation, introduced as a result of the changes in [6333] and [6365]. Thanks for the report, xiaolianyi@….

Note: See TracTickets for help on using tickets.
Back to Top