diff --git a/anki/utils.py b/anki/utils.py index cc0b1b9b2..8fe0e1ee0 100644 --- a/anki/utils.py +++ b/anki/utils.py @@ -57,7 +57,7 @@ def fmtTimeSpan(time, pad=0, point=0, short=False, after=False, unit=99): (type, point) = optimalPeriod(time, point, unit) time = convertSecondsTo(time, type) if not point: - time = math.floor(time) + time = round(time) if short: fmt = shortTimeFmt(type) else: