sometimes usernames are coming back as byte strings

This commit is contained in:
Jeff Balogh 2011-08-25 16:09:33 -07:00
Родитель 756ef64745
Коммит adf5c2e746
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -12,7 +12,7 @@ from django.contrib.auth.models import User as DjangoUser
from django.core import validators
from django.db import models
from django.template import Context, loader
from django.utils.encoding import smart_str
from django.utils.encoding import smart_str, smart_unicode
from django.utils.functional import lazy
import caching.base as caching
@ -175,7 +175,7 @@ class UserProfile(amo.models.ModelBase):
@property
def name(self):
return self.display_name or self.username
return smart_unicode(self.display_name or self.username)
welcome_name = name