mirror of
https://github.com/django/django.git
synced 2025-10-29 00:26:07 +00:00
Fixed #22798 -- pluralize() now adds plural_suffix for any 1 < d < 2
Thanks Odd_Bloke for the report.
This commit is contained in:
committed by
Tim Graham
parent
f97c53c098
commit
868ff4e37c
@@ -934,7 +934,7 @@ def pluralize(value, arg='s'):
|
||||
singular_suffix, plural_suffix = bits[:2]
|
||||
|
||||
try:
|
||||
if int(value) != 1:
|
||||
if float(value) != 1:
|
||||
return plural_suffix
|
||||
except ValueError: # Invalid string that's not a number.
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user