GTG

Comment 2 for bug 516387

Revision history for this message
Luca Invernizzi (invernizzi) wrote :

bug is caused by:
===
dleft = task.get_days_left()
if not dleft:
                return something
[..]
if dleft == 0:
                return _("Today")

===
if dleft is 0, not dleft is 1.