On Thu, May 14, 2009 at 12:01 PM, Prabhjyot Singh <prabhjyot.si...@mkhoj.com
> wrote:

>
> I am using
>        resultset = queryset.get(status__in=['pending'])
> but it is giving me error which says:
>
> Exception Type:         MultipleObjectsReturned
> Exception Value:
>
> get() returned more than one WapAd -- it returned 3! Lookup parameters were
> {'status__in': ['pending']}
>
> Exception Location:
> /usr/lib/python2.5/site-packages/django/db/models/query.py in get, line 277
>
>
> what should I do?
>

get tries to return only one item. If you want a queryset or multiple items
you want to use filter instead of get.

Hope that helps,
Michael

>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to