Greg skrev:
> Tim,
> I added your code into my view.  However, it seems to error out on me
> when I get to the line 'if 'color' in request and request['color'] <>
> NO_COLOR: '.  The error says:
>
> KeyError at /rugs/searchresult/
> '0 not found in either POST or GET'
>   
The error message indicates that you did something equivalent to
    request[0]

Are you sure you didn't do this:

        if 'color' in request and request[color] <> NO_COLOR:


or this:

        if 'color' in request and request[color <> NO_COLOR]:

?



--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to