Skip to content

Commit 85d00e2

Browse files
committed
Fix missing __unicode__ in IRTF proxy, it meant that the __unicode__
from Group was called instead - Legacy-Id: 3998
1 parent 124b398 commit 85d00e2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/group/proxy.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ def irtf_id(self):
233233
#meeting_scheduled = models.BooleanField(blank=True)
234234
def __str__(self):
235235
return self.acronym
236+
def __unicode__(self):
237+
return self.acronym
236238
#def chairs(self): # return a set of IRTFChair objects for this work group
237239
# return IRTFChair.objects.filter(irtf=self)
238240
class Meta:

0 commit comments

Comments
 (0)