Skip to content

Commit

Permalink
Fix decoding error in numeric_phrase. See #2364
Browse files Browse the repository at this point in the history
I missed this one in 50b9e40
  • Loading branch information
lazka committed Jun 6, 2017
1 parent 0f040bb commit a2922df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quodlibet/quodlibet/util/i18n.py
Expand Up @@ -397,7 +397,7 @@ def numeric_phrase(singular, plural, n, template_var=None):
`"Add 12,345 songs"`
(in `en_US` locale at least)
"""
num_text = locale.format('%d', n, grouping=True)
num_text = locale_format('%d', n, grouping=True)
if not template_var:
template_var = '%d'
replacement = '%s'
Expand Down

0 comments on commit a2922df

Please sign in to comment.