Skip to content

Commit 7b34252

Browse files
committed
Fixes ietf-tools#1723. Area names hardcoded in Proceedings app. Commit ready for merge.
- Legacy-Id: 9666
1 parent 92752f1 commit 7b34252

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/proceedings/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_extras(meeting):
7878
Gather "extras" which are one off groups. ie iab-wcit(86)
7979
'''
8080
groups = []
81-
sessions = Session.objects.filter(meeting=meeting).exclude(group__parent__acronym__in=('app','gen','int','ops','rai','rtg','sec','tsv','irtf'))
81+
sessions = Session.objects.filter(meeting=meeting).exclude(group__parent__type__in=('area','irtf'))
8282
for session in sessions:
8383
timeslot = get_timeslot(session)
8484
if timeslot and timeslot.type.slug == 'session' and session.materials.all():

0 commit comments

Comments
 (0)