﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
4479	[unicode] isValidFloat is using gettext in unicode-branch	Jure Cuhalev <gandalf@…>	Malcolm Tredinnick	"isValidFloat in django.core validators is referencing gettext in unicode branch, here is a patch:


{{{
===================================================================
--- validators.py       (revision 5427)
+++ validators.py       (working copy)
@@ -437,7 +437,7 @@
     try:
         float(data)
     except ValueError:
-        raise ValidationError, gettext(""Please enter a valid floating point number."")
+        raise ValidationError, ugettext_lazy(""Please enter a valid floating point number."")
 
 class HasAllowableSize(object):
     """"""
}}}
"		closed	Validators	dev		fixed	unicode	gandalf@…	Accepted	0	0	0	0	0	0
