Fix bugfix to match the IRTF type in the new database

- Legacy-Id: 3983
This commit is contained in:
Ole Laursen 2012-02-27 17:09:08 +00:00
parent f46e96c7a1
commit 0b3c475432

View file

@ -439,7 +439,7 @@ class WgMeetingSessionProxy(TimeSlot):
else:
return self.session.group.name
def area(self):
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"]:
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"]:
return ""
return self.session.group.parent.acronym
def area_name(self):