Improved fix to the first undefined symbol problem in proceedings/models.py (Bills original fix in [213] reinstated)

- Legacy-Id: 237
Note: SVN reference [213] has been migrated to Git commit 01f0baaf56
This commit is contained in:
Henrik Levkowetz 2007-06-05 17:30:22 +00:00
parent 888418a14f
commit 2f8f7742a4

View file

@ -31,6 +31,8 @@ class ResolveAcronym(object):
acronym_name = IRTF.objects.get(pk=self.group_acronym_id).name
else:
acronym_name = Acronym.objects.get(pk=self.group_acronym_id).name
if interim:
return acronym_name + " (interim)"
return acronym_name
def area(self):
if self.irtf: