On 4/25/06, FX <[EMAIL PROTECTED]> wrote:
> Seems to me it looks like a bug in the m-r branch.
> django/db/models/query.py, line 430:
>
> was:
> if "." not in col_name and col_name not in [k[0] for k in (self._select
> or ())]:
>
> should be:
> if "." not in col_name and col_name not in [k for k in (self._select or
> ())]:
>
> for k[0] will be the first letter of the key in self._select, not the
> key itself. I'll submit a ticket for it.

That ticket's been committed. Thanks for reporting!

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
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