hazelnut expects the initial columns to be passed to its constructor
[myslice.git] / auth / views.py
index c26bc1d..2a9ff83 100644 (file)
@@ -44,7 +44,7 @@ def login_user(request):
 
 # hard question : where should we redirect requests to logout if user is not logged in ?
 def logout_user (request):
-    # xxx check that we're indeed logged in
+    # check that we're indeed logged in
     if not request.user.is_authenticated():
         return HttpResponseRedirect ('/')
     logout(request)