On 2/19/07, sandro.dentella <[EMAIL PROTECTED]> wrote:
> I had similar problems this night. It comes out help_text is the
> source of problems. I fixed it adding smart_unicode in Field class
> (newforms.fields):
>
> class Field(object):
> ...
> def __init__(...):
> self.help_text = s
Hi,
I had similar problems this night. It comes out help_text is the
source of problems. I fixed it adding smart_unicode in Field class
(newforms.fields):
class Field(object):
...
def __init__(...):
self.help_text = smart_unicode(help_text)
sandro
*:-)
PS: should I open a ticket
Hi guys,
I have my database and my application set up to the UTF-8 charset (my
settings file have an option DEFAULT_CHARSET = 'UTF-8'). I don't have
to pass verbose_names or help_texts as unicode strings, I didn't have
any problem with character encoding using the admin interface, but now
I want
3 matches
Mail list logo