Improved error message in urlresolvers.RegexURLResolver.resolve to use repr instead of str on app_path
git-svn-id: http://code.djangoproject.com/svn/django/trunk@204 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7fa76265ad
commit
b430d4c54f
|
@ -82,7 +82,7 @@ class RegexURLResolver:
|
||||||
if match:
|
if match:
|
||||||
return match
|
return match
|
||||||
# None of the regexes matched, so raise a 404.
|
# None of the regexes matched, so raise a 404.
|
||||||
raise Http404, "Tried all URL patterns but didn't find a match for %s" % app_path
|
raise Http404, "Tried all URL patterns but didn't find a match for %r" % app_path
|
||||||
|
|
||||||
class Error404Resolver:
|
class Error404Resolver:
|
||||||
def __init__(self, callback):
|
def __init__(self, callback):
|
||||||
|
|
Loading…
Reference in New Issue