On Tue, Apr 03, 2007 at 03:46:04PM -0700, TaMeR wrote: > This used to work and I must have done something to break the code. > The simple page view still works fine but the list view gives me this > error and I been through my code a million times and can't find > anything wrong with it.
The way your view is written, if the user is not authenticated, no HttpResponse is returned (since no return statement is executed). You probably want to just raise Http404 in that case. -Forest
signature.asc
Description: Digital signature

