mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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:
		| @@ -82,7 +82,7 @@ class RegexURLResolver: | ||||
|             if match: | ||||
|                 return match | ||||
|         # 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: | ||||
|     def __init__(self, callback): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user