From 3bdc14818f265ab0f26ddc93c1a3a9ce450e0c09 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 1 Jul 2007 04:42:46 +0000 Subject: [PATCH] newforms-admin: Corrected small error in _get_add_forms() docstring git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5577 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/newforms/formsets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/newforms/formsets.py b/django/newforms/formsets.py index 2e1a8e8767..f3477226ca 100644 --- a/django/newforms/formsets.py +++ b/django/newforms/formsets.py @@ -48,7 +48,7 @@ class BaseFormSet(object): self.management_form = ManagementForm(initial={FORM_COUNT_FIELD_NAME: self.total_forms}, auto_id=self.auto_id, prefix=self.prefix) def _get_add_forms(self): - """Return a list of all the change forms in this ``FormSet``.""" + """Return a list of all the add forms in this ``FormSet``.""" Form = self.form_class if not hasattr(self, '_add_forms'): add_forms = []