From 0b7894423d595ea200f47a7572b36d058f48ca9b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 19 Dec 2007 03:40:39 +0000 Subject: [PATCH] Fixed comma splices in PendingDeprecationWarnings of form_for_model and form_for_instance from [6846] git-svn-id: http://code.djangoproject.com/svn/django/trunk@6945 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/newforms/models.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/django/newforms/models.py b/django/newforms/models.py index 44ff9f7d0ab..fd0087a3b17 100644 --- a/django/newforms/models.py +++ b/django/newforms/models.py @@ -84,9 +84,8 @@ def form_for_model(model, form=BaseForm, fields=None, determining the formfield for a given database field. It's a callable that takes a database Field instance and returns a form Field instance. """ - warn("form_for_model is deprecated, use ModelForm instead.", - PendingDeprecationWarning, - stacklevel=3) + warn("form_for_model is deprecated. Use ModelForm instead.", + PendingDeprecationWarning, stacklevel=3) opts = model._meta field_list = [] for f in opts.fields + opts.many_to_many: @@ -114,9 +113,8 @@ def form_for_instance(instance, form=BaseForm, fields=None, takes a database Field instance, plus **kwargs, and returns a form Field instance with the given kwargs (i.e. 'initial'). """ - warn("form_for_instance is deprecated, use ModelForm instead.", - PendingDeprecationWarning, - stacklevel=3) + warn("form_for_instance is deprecated. Use ModelForm instead.", + PendingDeprecationWarning, stacklevel=3) model = instance.__class__ opts = model._meta field_list = []