From 8e82213b57bc28e3f3e9cf30b167e64d2aeda972 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 21 Mar 2012 14:23:09 +0000 Subject: [PATCH] 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 --- ietf/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/settings.py b/ietf/settings.py index 94e82b569..2c69d5281 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -233,9 +233,9 @@ IDSUBMIT_ANNOUNCE_FROM_EMAIL = 'internet-drafts@ietf.org' IDSUBMIT_ANNOUNCE_LIST_EMAIL = 'i-d-announce@ietf.org' # Days from meeting to cut off dates on submit -FIRST_CUTOFF_DAYS = 20 -SECOND_CUTOFF_DAYS = 13 -CUTOFF_HOUR = 24 # midnight UTC +FIRST_CUTOFF_DAYS = 19 +SECOND_CUTOFF_DAYS = 12 +CUTOFF_HOUR = 00 # midnight UTC SUBMISSION_START_DAYS = -90 SUBMISSION_CUTOFF_DAYS = 33 SUBMISSION_CORRECTION_DAYS = 52