On Oct 26, 2006, at 3:24 AM, MerMer wrote:

I am trying to get the Logout Method to work, but I keep
getting"Exception Value:  maximum recursion depth exceeded!".

The view is very straightforward, so I can't understand where I'm going
wrong.

from django.contrib.auth import logout, authenticate, login

def logout(request):
    logout(request)  # debug shows it fails on this line
    return render_to_response('promotions.html')



Probably because python is calling the wrong logout method (yours and not django's). I would instead qualify the logout method you are calling like this:

from django.contrib import auth

def logout(request):
auth.logout(request)
...

or you could rename your logout method to something else, like log_me_out(), which should prevent the recursion.

Don


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to