Opened 17 years ago
Closed 17 years ago
#6016 closed (invalid)
Admin crash when deleting an object
Reported by: | Owned by: | ||
---|---|---|---|
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 (last modified by )
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 (8)
comment:1 by , 17 years ago
Description: | modified (diff) |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 17 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 17 years ago
I can't reproduce it so far in admin.
The only way I found to get similar errors is to do sth like :
obj.pregunta = '\xc2\xbfProbando una pregunta? -> '
obj.save()
unicode(obj)
But aren't we supposed to do :
obj.pregunta = u'\xc2\xbfProbando una pregunta? -> ' # add u
or to get the same output :
obj.pregunta = u'\xbfProbando una pregunta? -> '
My poor knowledge in Django unicode internals don't allow me to go further :(
comment:4 by , 17 years ago
Owner: | removed |
---|---|
Status: | assigned → new |
comment:5 by , 17 years ago
Resolution: | → worksforme |
---|---|
Status: | new → closed |
comment:6 by , 17 years ago
Resolution: | worksforme |
---|---|
Status: | closed → reopened |
comment:8 by , 17 years ago
Resolution: | → invalid |
---|---|
Status: | reopened → closed |
Comment 7 seems sane to me, please re-open / slap me if I'm wrong.
fixed description formatting.