Randy, thanks for the follow-up,  and you're on the right track, turns
out it's an encoding 'problem' by default in django.  I just have to
change the encoding language and then ask it for a different code.

I got it working for what I need.

John

On May 8, 9:16 pm, Peter Rowell <[EMAIL PROTECTED]> wrote:
> Well, I'm not quite sure exactly what is being done to it, but it
> appears to happen at:
>
> =============================================
> django/http/__init__.py:
> ...
> class QueryDict(MultiValueDict):
> ...
>  def appendlist(self, key, value):
>         self._assert_mutable()
>         key = str_to_unicode(key, self.encoding)
>         value = str_to_unicode(value, self.encoding)
>         MultiValueDict.appendlist(self, key, value)
> <<<<<<<<<<<<<<<<<<<<<<<
> =============================================
>
> Before the call to appendlist value looks reasonable, afterwards it's
> been converted to ...? unicode or something.
>
> That and $3.50 will get you a latte, but there it is.
--~--~---------~--~----~------------~-------~--~----~
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