Skip to content

Commit 2f8f774

Browse files
committed
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 01f0baa
1 parent 888418a commit 2f8f774

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/proceedings/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def acronym_name(self):
3131
acronym_name = IRTF.objects.get(pk=self.group_acronym_id).name
3232
else:
3333
acronym_name = Acronym.objects.get(pk=self.group_acronym_id).name
34+
if interim:
35+
return acronym_name + " (interim)"
3436
return acronym_name
3537
def area(self):
3638
if self.irtf:

0 commit comments

Comments
 (0)