mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #12594 -- Ensured that a meaningful exception is raised when the urlconf_module is None. Thanks to buriy for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9b50ec81a3
commit
667ced2abc
3 changed files with 23 additions and 2 deletions
|
@ -5,3 +5,7 @@ import urlconf_inner
|
|||
class ChangeURLconfMiddleware(object):
|
||||
def process_request(self, request):
|
||||
request.urlconf = urlconf_inner.__name__
|
||||
|
||||
class NullChangeURLconfMiddleware(object):
|
||||
def process_request(self, request):
|
||||
request.urlconf = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue