Author: russellm
Date: 2007-09-19 18:32:53 -0500 (Wed, 19 Sep 2007)
New Revision: 6377
Modified:
django/trunk/docs/sessions.txt
Log:
Fixed #5544 -- Fixed typo in documentation, introduced as a result of the
changes in [6333] and [6365]. Thanks for the report, [EMAIL PROTECTED]
Modified: django/trunk/docs/sessions.txt
===================================================================
--- django/trunk/docs/sessions.txt 2007-09-19 20:54:46 UTC (rev 6376)
+++ django/trunk/docs/sessions.txt 2007-09-19 23:32:53 UTC (rev 6377)
@@ -198,7 +198,7 @@
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']
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---