mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix deck stats
This commit is contained in:
parent
9775213845
commit
af78b0bf94
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ class DeckStats(object):
|
|||
html += _("First-seen cards: <b>%(gNewYes%)0.1f%%</b> "
|
||||
"(<b>%(gNewYes)d</b> of <b>%(gNewTotal)d</b>)<br><br>") % stats
|
||||
# average pending time
|
||||
existing = d.cardCount - d.newTodayCount
|
||||
existing = d.cardCount - d.newCountToday
|
||||
avgInt = self.getAverageInterval()
|
||||
def tr(a, b):
|
||||
return "<tr><td>%s</td><td align=right>%s</td></tr>" % (a, b)
|
||||
|
|
Loading…
Reference in a new issue