Today I received data via the Django admin which couldn't be encoded. Somehow the encoding of the data is not in unicode. How is this possible?
I have a name property at my Client model which returns the data in unicode:
@property
def name(self):
return u'{0} {1}'.format(self.firstname, self.lastname).strip()
But this doesnt work:
>>> client
<Client: [Bad Unicode data]>
>>> client.lastname
'Dani\xc3\xabl'
>>> client.lastname.__class__
<type 'str'>
>>> u"{0} {1}".format(client.firstname, client.lastname)
Traceback (most recent call last):
File "<console>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 4: ordinal not in range(128)
Stange enough, encoding the first/lastname as regular string does work:
>>> "{0} {1}".format(client.firstname, client.lastname)
'Test Dani\xc3\xabl'
>>> "{0} {1}".format(client.firstname, client.lastname).decode('utf-8')
u'Test Dani\xebl'
What happened here? and how did this input get into my model via the admin?
System stack (it's an external server):
- Debian 6.0.5 (Squeeze)
- Django 1.4.1
- Python 2.6.6
- MySQL 5.1.49
- MySQL-python==1.2.2
This is the relevant model code:
class Client(models.Model):
firstname = models.CharField(_("Firstname"), max_length=255)
lastname = models.CharField(_("Lastname"), max_length=255)
email = models.EmailField(_("Email"), unique=True, max_length=255)
class Meta:
db_table = u'clients'
ordering = ('firstname', 'lastname', 'email')
def __unicode__(self):
return u'{0} <{1}>'.format(self.name, self.email)
@property
def name(self):
return u'{0} {1}'.format(self.firstname, self.lastname).strip()

firstnameandlastnameare fields? Could you post the relevant model code? – Thomas Orozco Sep 1 '12 at 11:10