From df193b3cefda982dfcd4813bf4e2ac09b1358f21 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Mon, 9 Mar 2015 17:56:13 +0100 Subject: Fixed #24382 -- Allowed unicode chars inside formatted numbers Thanks Jacob Rief for the report and Tim Graham for the review. --- django/utils/numberformat.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'django/utils/numberformat.py') diff --git a/django/utils/numberformat.py b/django/utils/numberformat.py index 3f61a6600a..6667d823a5 100644 --- a/django/utils/numberformat.py +++ b/django/utils/numberformat.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + from decimal import Decimal from django.conf import settings -- cgit v1.3