1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.10.x] Clarified URL regex check message with respect to include().

Backport of 7ed8b98f42 from master
This commit is contained in:
Riccardo Magliocchetti
2016-09-01 15:39:56 +02:00
committed by Tim Graham
parent 0a81f540c9
commit 51e5ca4462
3 changed files with 14 additions and 3 deletions

View File

@@ -644,6 +644,8 @@ The following checks are performed on your URL configuration:
including URLs.
* **urls.W002**: Your URL pattern ``<pattern>`` has a ``regex``
beginning with a ``/``. Remove this slash as it is unnecessary.
If this pattern is targeted in an :func:`~django.conf.urls.include`, ensure
the :func:`~django.conf.urls.include` pattern has a trailing ``/``.
* **urls.W003**: Your URL pattern ``<pattern>`` has a ``name``
including a ``:``. Remove the colon, to avoid ambiguous namespace
references.