From 0b3c47543238ac7e5e2dde29622f4382d4e40cfe Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Mon, 27 Feb 2012 17:09:08 +0000 Subject: [PATCH] Fix bugfix to match the IRTF type in the new database - Legacy-Id: 3983 --- ietf/meeting/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/meeting/proxy.py b/ietf/meeting/proxy.py index 83edaa457..390e1cb1f 100644 --- a/ietf/meeting/proxy.py +++ b/ietf/meeting/proxy.py @@ -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):