Commit a10fcbdb authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

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


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9062 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 11e29c88
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -11,8 +11,10 @@ class SessionMiddleware(object):
        request.session = engine.SessionStore(session_key)

    def process_response(self, request, response):
        # If request.session was modified, or if response.session was set, save
        # those changes and set a session cookie.
        """
        If request.session was modified, or if the configuration is to save the
        session every time, save the changes and set a session cookie.
        """
        try:
            accessed = request.session.accessed
            modified = request.session.modified