Fix missing __unicode__ in IRTF proxy, it meant that the __unicode__

from Group was called instead
 - Legacy-Id: 3998
This commit is contained in:
Ole Laursen 2012-02-28 19:32:41 +00:00
parent 124b398729
commit 85d00e2a06

View file

@ -233,6 +233,8 @@ class IRTF(Group):
#meeting_scheduled = models.BooleanField(blank=True)
def __str__(self):
return self.acronym
def __unicode__(self):
return self.acronym
#def chairs(self): # return a set of IRTFChair objects for this work group
# return IRTFChair.objects.filter(irtf=self)
class Meta: