From 6ce63b4889c9605cababfb1fe852bf03abd6993f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 4 Jan 2009 11:57:41 +0900 Subject: [PATCH] fix plural definition --- anki/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/utils.py b/anki/utils.py index bdb0b96de..abe8e815d 100644 --- a/anki/utils.py +++ b/anki/utils.py @@ -103,7 +103,7 @@ def convertSecondsTo(seconds, type): def _pluralCount(time): if round(time, 1) == 1: return 1 - return 2 + return round(time, 1) # HTML ##############################################################################