Refs #23151 -- Removed RegexField's unused error_message parameter.
Should have been removed in b6ea1961eb6816dee4370fb0ebd49dba29478db1.
This commit is contained in:
parent
fb7e0e01af
commit
afcf44c101
@ -495,11 +495,9 @@ class DurationField(Field):
|
|||||||
|
|
||||||
|
|
||||||
class RegexField(CharField):
|
class RegexField(CharField):
|
||||||
def __init__(self, regex, max_length=None, min_length=None, error_message=None, *args, **kwargs):
|
def __init__(self, regex, max_length=None, min_length=None, *args, **kwargs):
|
||||||
"""
|
"""
|
||||||
regex can be either a string or a compiled regular expression object.
|
regex can be either a string or a compiled regular expression object.
|
||||||
error_message is an optional error message to use, if
|
|
||||||
'Enter a valid value' is too generic for you.
|
|
||||||
"""
|
"""
|
||||||
kwargs.setdefault('strip', False)
|
kwargs.setdefault('strip', False)
|
||||||
super().__init__(max_length, min_length, *args, **kwargs)
|
super().__init__(max_length, min_length, *args, **kwargs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user