From b956eff6b5ed5abf247e27cb4276ab809c6d6fbd Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 9 Dec 2008 02:29:08 +0900 Subject: [PATCH] split model & card model tags --- anki/stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anki/stats.py b/anki/stats.py index ff3df7a89..f360905d0 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -287,8 +287,8 @@ class CardStats(object): c.averageTime) self.addLine(_("Total Time"), _("%0.1f seconds") % c.reviewTime) - self.addLine(_("Inherited Tags") + " "*3, canonifyTags( - c.fact.model.tags + "," + c.cardModel.name)) + self.addLine(_("Model Tags") + " "*5, c.fact.model.tags) + self.addLine(_("Card Model"), c.cardModel.name) self.txt += "" return self.txt