Skip to content

Commit 8e82213

Browse files
committed
Correct the cutoff hour to 00 to get the correct reopening time -- was 24 hours too late with the '24' value. FIXME: Refactory the cutoff calculations and display, puttting display text in the template, and using datetime objects consistently for calculations and to pass to template.
- Legacy-Id: 4154
1 parent 0dd2563 commit 8e82213

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,9 @@
233233
IDSUBMIT_ANNOUNCE_LIST_EMAIL = 'i-d-announce@ietf.org'
234234

235235
# Days from meeting to cut off dates on submit
236-
FIRST_CUTOFF_DAYS = 20
237-
SECOND_CUTOFF_DAYS = 13
238-
CUTOFF_HOUR = 24 # midnight UTC
236+
FIRST_CUTOFF_DAYS = 19
237+
SECOND_CUTOFF_DAYS = 12
238+
CUTOFF_HOUR = 00 # midnight UTC
239239
SUBMISSION_START_DAYS = -90
240240
SUBMISSION_CUTOFF_DAYS = 33
241241
SUBMISSION_CORRECTION_DAYS = 52

0 commit comments

Comments
 (0)