Removed unnecessary import in django/urls/base.py.

This commit is contained in:
Yoong Kang Lim 2016-01-23 23:13:09 +11:00 committed by Tim Graham
parent 817b75c54d
commit 7037dc5724
1 changed files with 0 additions and 1 deletions

View File

@ -153,7 +153,6 @@ def is_valid_path(path, urlconf=None):
False otherwise. This is a convenience method to make working with "is
this a match?" cases easier, avoiding try...except blocks.
"""
from django.urls.base import resolve
try:
resolve(path, urlconf)
return True