1
0
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:
Claude Paroz
2013-03-14 15:25:27 +01:00
parent b492e59074
commit 34d098665d
2 changed files with 2 additions and 1 deletions

View File

@@ -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: