Skip to content

Commit

Permalink
Costumes: fix name not showing up in the right language
Browse files Browse the repository at this point in the history
  • Loading branch information
db0company committed Sep 1, 2018
1 parent 096cebb commit b33e50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bang/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1889,6 +1889,6 @@ def display_image_thumbnail_url(self):

def __unicode__(self):
return u'{}{}'.format(
u'{} - '.format(self.member.name) if self.member_id else '',
u'{} - '.format(self.member.t_name) if self.member_id else '',
self.t_name,
)

0 comments on commit b33e50f

Please sign in to comment.