Django

Code

Changeset 9062

Show
Ignore:
Timestamp:
09/17/08 03:10:55 (4 months ago)
Author:
mtredinnick
Message:

Fixed #9096 -- Fixed a slightly out-of-date comment.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/sessions/middleware.py

    r8156 r9062  
    1212 
    1313    def process_response(self, request, response): 
    14         # If request.session was modified, or if response.session was set, save 
    15         # those changes and set a session cookie. 
     14        """ 
     15        If request.session was modified, or if the configuration is to save the 
     16        session every time, save the changes and set a session cookie. 
     17        """ 
    1618        try: 
    1719            accessed = request.session.accessed