[session] do not clean the after_url session attribute

The attribute is still used by the AccessError exceptions to store the
continuation URL when redirecting to the login page.
This commit is contained in:
Benjamin Dauvergne 2011-05-06 14:31:32 +00:00
parent 5e731089ee
commit bd7a7b3156
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class BasicSession(Session, CaptchaSession, StorableObject):
def set_service(self, value):
self._service = value
_not_cleaned = ('_service')
_not_cleaned = ('_service','after_url')
_to_remove = ('login_tokens')
def clean_data(self):