From a59cb3b7a6b1b35088f3c2d039ce44e9416a30d5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 24 Aug 2012 15:58:00 +0900 Subject: [PATCH] cards/5 minutes -> cards/minute --- anki/stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anki/stats.py b/anki/stats.py index d2f112965..7832f30c2 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -286,8 +286,8 @@ group by day order by day""" % (self._limit(), lim), if total and tot: self._line( i, _("Average answer time"), - _("%(a)0.1fs (%(b)d cards/5 minutes)") % dict( - a=(tot*60)/total, b=(total / float(tot))*5)) + _("%(a)0.1fs (%(b)d cards/minute)") % dict( + a=(tot*60)/total, b=(total / float(tot)))) return self._lineTbl(i), int(tot) def _splitRepData(self, data, spec):