Skip to content

Commit 60bab5f

Browse files
When working group chairs added an annotation to a document, the date on the history entry was wrong. It has now been fixed.
- Legacy-Id: 5899
1 parent 8d4a171 commit 60bab5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ietfworkflows/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def save(self):
294294
comment = self.cleaned_data.get('comment').strip()
295295
if comment:
296296
e = DocEvent(type="added_comment")
297-
e.time = self.draft.time
297+
e.time = datetime.datetime.now()
298298
e.by = self.person
299299
e.doc_id = self.draft.pk
300300
e.desc = comment

0 commit comments

Comments
 (0)