Skip to content

Commit 3863b0d

Browse files
committed
Added another state to the possible IETFWG states in the group proxy models file, to avoid exceptions.
- Legacy-Id: 6484
1 parent 2dcb9bc commit 3863b0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def start_date(self):
131131
#status = models.ForeignKey(WGStatus)
132132
@property
133133
def status_id(self):
134-
return { "active": 1, "dormant": 2, "conclude": 3, "bof-conc": 3, "proposed": 4, "bof": 4, "abandon": 4 }[self.state_id]
134+
return { "active": 1, "dormant": 2, "conclude": 3, "bof-conc": 3, "proposed": 4, "bof": 4, "abandon": 4, "replaced": 4}[self.state_id]
135135
#area_director = models.ForeignKey(AreaDirector, null=True)
136136
#meeting_scheduled = models.CharField(blank=True, max_length=3)
137137
@property

0 commit comments

Comments
 (0)