[releng] Delay release reminders one extra day



commit 7d7d3d814b4d8f116c13b28b517e1c7cb446af0e
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Wed Feb 12 08:35:14 2020 -0600

    Delay release reminders one extra day
    
    I think we're sending out release reminders a bit too soon. If we send
    these Tuesday night, developers are liable to put it off until later in
    the week and forget. Let's send the reminders Wednesday night instead,
    which gives developers Thursday, Friday, and Saturday to do the release
    after the reminder is sent. That's still a reasonable amount of time.

 tools/schedule/automail.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/tools/schedule/automail.py b/tools/schedule/automail.py
index a0a4fe1..7616127 100755
--- a/tools/schedule/automail.py
+++ b/tools/schedule/automail.py
@@ -63,7 +63,7 @@ def mail_events(events):
 
 events = parse_file()
 today = datetime.date.today()
-date_to_notify_for = today + datetime.timedelta (3)
+date_to_notify_for = today + datetime.timedelta (2)
 
 events_to_email = [event for event in events if event.automail and event.date == date_to_notify_for]
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]