mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #27887 -- Fixed URLs check crash with namespaced URLs inside non-namespaced URLs.
This commit is contained in:
parent
6b47431aaf
commit
b23d264046
2 changed files with 6 additions and 1 deletions
|
@ -15,4 +15,6 @@ urlpatterns = [
|
|||
# 'nested' is included twice but namespaced by nested-1 and nested-2.
|
||||
url(r'^app-ns1-2/', include(nested_url_patterns, namespace='nested-1')),
|
||||
url(r'^app-ns1-3/', include(nested_url_patterns, namespace='nested-2')),
|
||||
# namespaced URLs inside non-namespaced URLs.
|
||||
url(r'^app-ns1-4/', include([url(r'^abc/', include(common_url_patterns))])),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue