summaryrefslogtreecommitdiff
path: root/django/forms
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms')
-rw-r--r--django/forms/fields.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/forms/fields.py b/django/forms/fields.py
index 8fa66cf0d6..9a037faca3 100644
--- a/django/forms/fields.py
+++ b/django/forms/fields.py
@@ -229,8 +229,6 @@ class IntegerField(Field):
class FloatField(IntegerField):
default_error_messages = {
'invalid': _(u'Enter a number.'),
- 'max_value': _(u'Ensure this value is less than or equal to %s.'),
- 'min_value': _(u'Ensure this value is greater than or equal to %s.'),
}
def to_python(self, value):