mirror of
https://github.com/django/django.git
synced 2024-11-30 07:06:18 +01:00
Added missing stacklevel arg in forms/models.py
This commit is contained in:
parent
36aecb12b8
commit
571864c845
@ -238,7 +238,7 @@ class ModelFormMetaclass(type):
|
|||||||
warnings.warn("Creating a ModelForm without either the 'fields' attribute "
|
warnings.warn("Creating a ModelForm without either the 'fields' attribute "
|
||||||
"or the 'exclude' attribute is deprecated - form %s "
|
"or the 'exclude' attribute is deprecated - form %s "
|
||||||
"needs updating" % name,
|
"needs updating" % name,
|
||||||
PendingDeprecationWarning)
|
PendingDeprecationWarning, stacklevel=2)
|
||||||
|
|
||||||
if opts.fields == ALL_FIELDS:
|
if opts.fields == ALL_FIELDS:
|
||||||
# sentinel for fields_for_model to indicate "get the list of
|
# sentinel for fields_for_model to indicate "get the list of
|
||||||
|
Loading…
Reference in New Issue
Block a user