mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
factor spacing into due time
This commit is contained in:
parent
9f182b4d61
commit
7d8904a65d
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue