Skip to content

Commit 1bfcf2e

Browse files
author
Sasha Romijn
committed
Fix issue in [17289] where wg_adjacent could be shown as a conflict.
- Legacy-Id: 17293 Note: SVN reference [17289] has been migrated to Git commit a227813
1 parent aaa8180 commit 1bfcf2e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/secr/sreq/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ def session_conflicts_as_string(group, meeting):
173173
Takes a Group object and Meeting object and returns a string of other groups which have
174174
a conflict with this one
175175
'''
176-
group_list = [ g.source.acronym for g in group.constraint_target_set.filter(meeting=meeting) ]
176+
groups = group.constraint_target_set.filter(meeting=meeting, name__in=['conflict', 'conflic2', 'conflic3'])
177+
group_list = [g.source.acronym for g in groups]
177178
return ', '.join(group_list)
178179

179180
# -------------------------------------------------

0 commit comments

Comments
 (0)