From fdc8d24c941681f344f999cbb8266e275760db1c Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 2 Jan 2013 11:26:07 +0100 Subject: Numbers are printed with commas as thousands separators without taking into account the locale of the system. --- source/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/utils.py') diff --git a/source/utils.py b/source/utils.py index fea123b4..9994c006 100755 --- a/source/utils.py +++ b/source/utils.py @@ -134,15 +134,15 @@ def tag_cloud(tags, query="word_count"): if query == "word_count": # tags cloud from the management page return ' '.join([('%s\n' % \ - (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), word, count, word)) \ + (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), word, format(count, ',d'), word)) \ for (word, count) in tags]) if query == "year": # tags cloud for the history return ' '.join([('%s\n' % \ - (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, count, word)) \ + (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, format(count, ',d'), word)) \ for (word, count) in tags]) return ' '.join([('%s\n' % \ - (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, count, calendar.month_name[int(word)])) \ + (min(1 + count * 7 / max([tag[1] for tag in tags]), 7), query, word, format(count, ',d'), calendar.month_name[int(word)])) \ for (word, count) in tags]) def send_mail(mfrom, mto, feed_title, article_title, description): -- cgit