Opened 16 years ago

Last modified 16 years ago

#6016 closed

Admin crash when deleting an object — at Initial Version

Reported by: aribao@… Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords: unicode delete
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I get this error:
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'>)

when I try to delete an object from the admin zone. The character ¿ breaks it.

More info. Model:
class Encuesta( models.Model ):

...
pregunta = models.CharField( max_length=255 )

def unicode( self ):

return self.pregunta

...

Thanks

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top