diff options
Diffstat (limited to 'django/template')
| -rw-r--r-- | django/template/defaultfilters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py index bd9f55b1e9..c75f371ec8 100644 --- a/django/template/defaultfilters.py +++ b/django/template/defaultfilters.py @@ -438,7 +438,7 @@ def pluralize(value, arg='s'): the comma is used for the singular case. """ if not ',' in arg: - arg = ',' + arg + arg = ',' + arg bits = arg.split(',') if len(bits) > 2: return '' |
