diff --git a/anki/stats.py b/anki/stats.py index 7cdc10103..51e0c39c0 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -32,7 +32,7 @@ class CardStats(object): self.addLine(_("Latest Review"), self.date(last/1000)) if c.queue in (1,2): if c.queue == 2: - next = time.time()+((self.col.sched.today - c.due)*86400) + next = time.time()+((c.due - self.col.sched.today)*86400) else: next = c.due next = self.date(next)