factor spacing into due time

This commit is contained in:
Damien Elmes 2009-10-01 20:17:31 +09:00
parent 9f182b4d61
commit 7d8904a65d

View file

@ -267,7 +267,7 @@ class CardStats(object):
self.addLine(_("First Review"), self.strTime(c.firstAnswered))
self.addLine(_("Changed"), self.strTime(c.modified))
if c.reps:
next = time.time() - c.due
next = time.time() - c.combinedDue
if next > 0:
next = _("%s ago") % fmt(next)
else: