Opened 17 years ago
Closed 17 years ago
#5544 closed (fixed)
django.contrib.sessions.engines.db isn't exist
Reported by: | 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)
Change History (5)
by , 17 years ago
comment:1 by , 17 years ago
Has patch: | set |
---|
comment:2 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 17 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
There is a 2nd module mistake just a couple lines down from the fixed one.
Note:
See TracTickets
for help on using tickets.
(In [6377]) Fixed #5544 -- Fixed typo in documentation, introduced as a result of the changes in [6333] and [6365]. Thanks for the report, xiaolianyi@….