Roundup Tracker - Issues

Issue 1649979

classification
reminder-script bug and fix
Type: Severity: normal
Components: None Versions:
process
Status: closed fixed
:
: : tmikk
Priority: normal :

Created on 2007-02-01 16:40 by tmikk, last changed 2007-02-01 16:40 by tmikk.

Messages
msg2398 Author: [hidden] (tmikk) Date: 2007-02-01 16:40
I implemented the roundup-reminder script as found in 1.3.2 source files - very helpful.   I believe there are three small bugs in there.  

1.  Line 99 should have "Activity" instead of "Urgency"


The next two are about the dates.  With the original I had creation dates such as tomorrow in the email.  I had to reverse the items in the formula calculating the date to show the correct dates in the Pretty format.
2.  Line 109 and 150 should read
        creation = (creation_date - date.Date('.')).pretty() 

instead of 
        creation = (date.Date('.') - creation_date).pretty()

3.  Line 114 and 156 should read
        activity = (activity_date - date.Date('.')).pretty()

instead of
        activity = (date.Date('.') - activity_date).pretty()

Thank you,
Tonu Mikk 
tmikk@umn.edu
History
Date User Action Args
2007-02-01 16:40:49tmikkcreate