Refs #31534 -- Improved django.conf.urls.url() warning message with stacklevel=2.

Use stacklevel=2 to show the calling site.
This commit is contained in:
Jon Dufresne 2020-05-23 09:17:31 -07:00 committed by GitHub
parent dfb9ae1d23
commit 437196da9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -17,5 +17,6 @@ def url(regex, view, kwargs=None, name=None):
'django.conf.urls.url() is deprecated in favor of '
'django.urls.re_path().',
RemovedInDjango40Warning,
stacklevel=2,
)
return re_path(regex, view, kwargs, name)