diff --git a/anki/stats.py b/anki/stats.py index 956d15155..ca82c2365 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -40,6 +40,7 @@ class CardStats(object): self.addLine(_("Interval"), fmt(c.ivl * 86400)) self.addLine(_("Ease"), "%d%%" % (c.factor/10.0)) self.addLine(_("Reviews"), "%d" % c.reps) + self.addLine(_("Lapses"), "%d" % c.lapses) (cnt, total) = self.col.db.first( "select count(), sum(time)/1000 from revlog where cid = :id", id=c.id)