Kaydet (Commit) fc85642e authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Added a more helpful error message to django.core.urlresolvers.RegexURLResolver.resolve

git-svn-id: http://code.djangoproject.com/svn/django/trunk@196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 1f4379bc
......@@ -82,7 +82,7 @@ class RegexURLResolver:
if match:
return match
# None of the regexes matched, so raise a 404.
raise Http404, app_path
raise Http404, "Tried all URL patterns but didn't find a match for %s" % app_path
class Error404Resolver:
def __init__(self, callback):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment