On Sep 23, 11:06 pm, Jigsaw <[EMAIL PROTECTED]> wrote:
> Hello,
>
> After upgrading from svn 8322 to 9084, I received: 'list' object has
> no attribute 'split'
> /usr/lib/python2.5/site-packages/django/contrib/admin/views/main.py in
> get_query_set, line 187
>
> I modified line 186 from:
>         if key.endswith('__in'):
> to:
>         if key.endswith('__in') and isinstance(value, str):
> I left line187 untouched:
>                 lookup_params[key] = value.split(',')
>
> Although this appears to have resolved the error, I wonder if I have
> done so correctly?
> If so, what should I do so that I don't lose this modification when I
> next update Django?
>
> Thanks,
> -Jason

It's possible this is a bug, in which case you should raise a ticket
at http://code.djangoproject.com, but you haven't given us enough
information to determine that. What's your code? What are you passing
into this function?

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