From 571864c84595558e0d72031485dda772e5b4a5c8 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Thu, 30 May 2013 20:07:53 +0200 Subject: [PATCH] Added missing stacklevel arg in forms/models.py --- django/forms/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/models.py b/django/forms/models.py index 9d5aa5d4d8..561ee7a44b 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -238,7 +238,7 @@ class ModelFormMetaclass(type): warnings.warn("Creating a ModelForm without either the 'fields' attribute " "or the 'exclude' attribute is deprecated - form %s " "needs updating" % name, - PendingDeprecationWarning) + PendingDeprecationWarning, stacklevel=2) if opts.fields == ALL_FIELDS: # sentinel for fields_for_model to indicate "get the list of