1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Removed obsolete TODO about moving CommaSeparatedIntegerField into contrib.

This commit is contained in:
Tim Graham 2015-09-01 09:09:22 -04:00
parent 064d4b1cb0
commit 0e925de245

View File

@ -1124,7 +1124,6 @@ class CharField(Field):
return super(CharField, self).formfield(**defaults)
# TODO: Maybe move this into contrib, because it's specialized.
class CommaSeparatedIntegerField(CharField):
default_validators = [validators.validate_comma_separated_integer_list]
description = _("Comma-separated integers")