summaryrefslogtreecommitdiff
path: root/meetingtools/apps/auth
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2013-03-04 06:40:13 +0100
committerLeif Johansson <leifj@sunet.se>2013-03-04 06:40:13 +0100
commitdf7ff6df0795072e56a4147f908c41f557712a22 (patch)
tree7bbb4a5b09135f0cdbf3a6242f4b0c0ab4c88e78 /meetingtools/apps/auth
parent69227893a307e9c2ab5230f53cecb0a5313fc445 (diff)
post logout destroy shib session
Diffstat (limited to 'meetingtools/apps/auth')
-rw-r--r--meetingtools/apps/auth/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meetingtools/apps/auth/views.py b/meetingtools/apps/auth/views.py
index ff7a932..edff910 100644
--- a/meetingtools/apps/auth/views.py
+++ b/meetingtools/apps/auth/views.py
@@ -52,7 +52,7 @@ def _is_member_or_employee(user):
def logout(request):
auth.logout(request)
post_logout= "/"
- if hasattr(settings,'POST_LOGOUT'):
+ if hasattr(settings, 'POST_LOGOUT'):
post_logout = settings.POST_LOGOUT
return HttpResponseRedirect(post_logout)