Commit 98aecaa9 authored by James Bennett's avatar James Bennett
Browse files

Fixed #13034: Corrected default error message for IntegerField.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12685 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 4960095e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -871,7 +871,7 @@ class FloatField(Field):
class IntegerField(Field):
    empty_strings_allowed = False
    default_error_messages = {
        'invalid': _("This value must be a float."),
        'invalid': _("This value must be an integer."),
    }
    description = _("Integer")