﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
3816	typo in Sessions docs	jon austin <jon.i.austin@…>	Jacob	"hi, 

found a small type in the sessions docs sample code (http://www.djangoproject.com/documentation/sessions/):

Session.objects.get_object should be Session.objects.get


{{{
Using sessions out of views

Internally, 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:

>>> from django.contrib.sessions.models import Session
>>> s = Session.objects.get_object(pk='2b1189a188b44ad18c35e113ac6ceead')
>>> s.expire_date
datetime.datetime(2005, 8, 20, 13, 35, 12)

}}}
"		closed	Documentation	dev		fixed	session		Ready for checkin	0	0	0	0	0	0
