From ea89f1d587c8f13adb968f459ee478817542b07a Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 27 Jan 2009 01:48:16 +0900 Subject: [PATCH] show # of facts in deck stats --- anki/stats.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/anki/stats.py b/anki/stats.py index 449222aaf..8dfc80267 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -325,7 +325,8 @@ class DeckStats(object): (stats["new"], stats["newP"]) = (new, newP) (stats["old"], stats["oldP"]) = (old, oldP) (stats["young"], stats["youngP"]) = (young, youngP) - html += _("Total number of cards: %d

") % total + html += _("Total number of cards: %d
") % total + html += _("Total number of facts: %d

") % d.factCount html += _("Card counts
") html += _("Mature cards: %(old)d "