Changes between Initial Version and Version 1 of Ticket #6016


Ignore:
Timestamp:
Nov 29, 2007, 10:09:06 PM (16 years ago)
Author:
Gary Wilson
Comment:

fixed description formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6016

    • Property Triage Stage UnreviewedAccepted
  • Ticket #6016 – Description

    initial v1  
    11I get this error:
     2{{{
    23DjangoUnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 0: ordinal not in range(128). You passed in DjangoUnicodeDecodeError('ascii', '\xc2\xbfProbando una pregunta? -> ', 0, 1, 'ordinal not in range(128)') (<class 'django.utils.encoding.DjangoUnicodeDecodeError'>)
     4}}}
    35
    46when I try to delete an object from the admin zone. The character ¿ breaks it.
    57
    68More info. Model:
     9{{{
     10#!python
    711class Encuesta( models.Model ):
    812    ...
    913    pregunta = models.CharField( max_length=255 )
    1014
    11    def __unicode__( self ):
     15    def __unicode__( self ):
    1216        return self.pregunta
    1317   ...
     18}}}
    1419
    1520Thanks
Back to Top