Skip to content

Commit aefe5cc

Browse files
committed
Fix another bug with not saving event description on status date change
- Legacy-Id: 3398
1 parent 21d797d commit aefe5cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/idrfc/views_edit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,8 @@ def diff(attr, name):
542542
if r["status_date"] != status_date:
543543
e = StatusDateDocEvent(doc=doc, by=login)
544544
e.type ="changed_status_date"
545-
d = desc("Status date", r["status_date"], status_date)
546-
changes.append(d)
545+
e.desc = desc("Status date", r["status_date"], status_date)
546+
changes.append(e.desc)
547547
e.date = r["status_date"]
548548
e.save()
549549

0 commit comments

Comments
 (0)