another bandaid for bug 682339

This commit is contained in:
Jeff Balogh 2011-08-26 10:57:23 -07:00
Родитель adf5c2e746
Коммит 69044f1020
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -124,6 +124,11 @@ class UserProfile(amo.models.ModelBase):
class Meta:
db_table = 'users'
def __init__(self, *args, **kw):
super(UserProfile, self).__init__(*args, **kw)
if self.username:
self.username = smart_unicode(self.username)
def __unicode__(self):
return '%s: %s' % (self.id, self.display_name or self.username)