1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Removed some more useless code related to the verify_exists removal.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz
2012-03-31 18:27:17 +00:00
parent 7b89e0fc57
commit 2d01c9de69
2 changed files with 1 additions and 9 deletions

View File

@@ -42,9 +42,6 @@ class URLValidator(RegexValidator):
r'(?::\d+)?' # optional port
r'(?:/?|[/?]\S+)$', re.IGNORECASE)
def __init__(self):
super(URLValidator, self).__init__()
def __call__(self, value):
try:
super(URLValidator, self).__call__(value)