Skip to content

Commit 0b3c475

Browse files
committed
Fix bugfix to match the IRTF type in the new database
- Legacy-Id: 3983
1 parent f46e96c commit 0b3c475

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def acronym_name(self):
439439
else:
440440
return self.session.group.name
441441
def area(self):
442-
if not self.session or not self.session.group or not self.session.group.parent or not self.session.group.parent.type_id in ["area","ietf"]:
442+
if not self.session or not self.session.group or not self.session.group.parent or not self.session.group.parent.type_id in ["area","irtf"]:
443443
return ""
444444
return self.session.group.parent.acronym
445445
def area_name(self):

0 commit comments

Comments
 (0)