Skip to content

Commit ddf45fd

Browse files
committed
Merged [5899] from suresh.krishnan@ericsson.com:
When working group chairs added an annotation to a document, the date on the history entry was wrong. It has now been fixed. Fixes issue ietf-tools#1046. - Legacy-Id: 5928 Note: SVN reference [5899] has been migrated to Git commit 60bab5f
2 parents 2cc0542 + 60bab5f commit ddf45fd

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)