Use stacklevel=2 with DeprecationWarnings

This makes the warnings refer to the code where it is used, which makes
it easier to find and fix.
This commit is contained in:
Daniel Hahler 2017-06-12 14:59:29 +02:00
parent 3c420cfad5
commit 515fe928d5
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ if django_filters:
warnings.warn(
"The built in 'rest_framework.filters.FilterSet' is deprecated. "
"You should use 'django_filters.rest_framework.FilterSet' instead.",
DeprecationWarning
DeprecationWarning, stacklevel=2
)
return super(FilterSet, self).__init__(*args, **kwargs)
@ -72,7 +72,7 @@ class DjangoFilterBackend(DFBase):
warnings.warn(
"The built in 'rest_framework.filters.DjangoFilterBackend' is deprecated. "
"You should use 'django_filters.rest_framework.DjangoFilterBackend' instead.",
DeprecationWarning
DeprecationWarning, stacklevel=2
)
return super(DjangoFilterBackend, cls).__new__(cls, *args, **kwargs)

View File

@ -333,7 +333,7 @@ class DefaultRouter(SimpleRouter):
warnings.warn(
"Including a schema directly via a router is now deprecated. "
"Use `get_schema_view()` instead.",
DeprecationWarning
DeprecationWarning, stacklevel=2
)
if 'schema_renderers' in kwargs:
assert 'schema_title' in kwargs, 'Missing "schema_title" argument.'