Changes between Initial Version and Version 1 of Ticket #6016
- Timestamp:
- Nov 29, 2007, 10:09:06 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6016
- Property Triage Stage Unreviewed → Accepted
-
Ticket #6016 – Description
initial v1 1 1 I get this error: 2 {{{ 2 3 DjangoUnicodeDecodeError: '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 }}} 3 5 4 6 when I try to delete an object from the admin zone. The character ¿ breaks it. 5 7 6 8 More info. Model: 9 {{{ 10 #!python 7 11 class Encuesta( models.Model ): 8 12 ... 9 13 pregunta = models.CharField( max_length=255 ) 10 14 11 def __unicode__( self ):15 def __unicode__( self ): 12 16 return self.pregunta 13 17 ... 18 }}} 14 19 15 20 Thanks