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 ##############################################################################