fix plural definition

This commit is contained in:
Damien Elmes 2009-01-04 11:57:41 +09:00
parent be5c162e6a
commit 6ce63b4889

View file

@ -103,7 +103,7 @@ def convertSecondsTo(seconds, type):
def _pluralCount(time): def _pluralCount(time):
if round(time, 1) == 1: if round(time, 1) == 1:
return 1 return 1
return 2 return round(time, 1)
# HTML # HTML
############################################################################## ##############################################################################