Skip to content

Commit 790d926

Browse files
committed
Apply same fix for concluded state for PWGs as for BOFs (noticed by
Ryan Cross) - Legacy-Id: 3740
1 parent b654dde commit 790d926

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

redesign/importing/import-groups.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ def import_date_event(group, name, type_name):
242242
s = state_names["conclude"]
243243
elif o.group_type.type == "PWG":
244244
s = state_names["proposed"]
245+
if o.status.status == "Concluded":
246+
s = state_names["conclude"]
245247
elif o.status.status == "Active":
246248
s = state_names["active"]
247249
elif o.status.status == "Dormant":

0 commit comments

Comments
 (0)