diff --git a/shelfzilla/apps/manga/models.py b/shelfzilla/apps/manga/models.py index f7a0c2a..5f70fd6 100644 --- a/shelfzilla/apps/manga/models.py +++ b/shelfzilla/apps/manga/models.py @@ -290,9 +290,9 @@ class UserWishlistVolume(models.Model): def __unicode__(self): return "{} {} {}".format( - self.user.username, + self.user.username.encode('utf-8'), _('wants'), - self.volume + self.volume.encode('utf-8'), ) class Meta: @@ -318,9 +318,9 @@ class UserReadVolume(models.Model): def __unicode__(self): return "{} {} {}".format( - self.user.username, + self.user.username.encode('utf-8'), _('have read'), - self.volume + self.volume.encode('utf-8'), ) class Meta: