mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Add a specific error message for URLValidator
This commit is contained in:
@@ -50,6 +50,7 @@ class URLValidator(RegexValidator):
|
||||
r'\[?[A-F0-9]*:[A-F0-9:]+\]?)' # ...or ipv6
|
||||
r'(?::\d+)?' # optional port
|
||||
r'(?:/?|[/?]\S+)$', re.IGNORECASE)
|
||||
message = _('Enter a valid URL.')
|
||||
|
||||
def __call__(self, value):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user