QuerySet.__or__ bug?

2006-07-31 Thread Scott Paul Robertson
I think I've found a bug when doing | (__or__) on QuerySets when or'ing with a QuerySet that filtered on a ManyToManyField. For example: The Model (Ticket): shortdesc = models.CharField(maxlength=255) desc = models.TextField() users = models.ManyToManyField(django.contrib.auth.models.User) There'

Re: QuerySet.__or__ bug?

2006-07-31 Thread Malcolm Tredinnick
Hi Scott, On Mon, 2006-07-31 at 16:54 -0700, Scott Paul Robertson wrote: > I think I've found a bug when doing | (__or__) on QuerySets when or'ing > with a QuerySet that filtered on a ManyToManyField. For example: > > The Model (Ticket): > shortdesc = models.CharField(maxlength=255) > desc = mod