Skip to content

Commit 27ff385

Browse files
committed
Fixed a place where the LastCallDocEvent expiry value was set as a date instead of a datetime.
- Legacy-Id: 13256
1 parent 56e7203 commit 27ff385

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/review/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def suggested_review_requests_for_team(team):
554554
)
555555
last_call_expiry_events = { e.doc_id: e for e in LastCallDocEvent.objects.order_by("time", "id") }
556556
for doc in last_call_docs:
557-
e = last_call_expiry_events[doc.pk] if doc.pk in last_call_expiry_events else LastCallDocEvent(expires=now.date(), time=now)
557+
e = last_call_expiry_events[doc.pk] if doc.pk in last_call_expiry_events else LastCallDocEvent(expires=now, time=now)
558558

559559
deadline = e.expires.date()
560560

0 commit comments

Comments
 (0)