On 8/26/05, Jason F. McBrayer <[EMAIL PROTECTED]> wrote: > > In [1]: from django.models.engulf import feeds, users, articles, categorys > > In [2]: c = categorys.get_list(user_id__exact=1)
You want categorys.get_list(user__id__exact=1) -- a subtle change. With the new syntax, calling code never refers to the "user_id" field -- only to "user". Adrian -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org