summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-07-01 04:42:46 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-07-01 04:42:46 +0000
commit3bdc14818f265ab0f26ddc93c1a3a9ce450e0c09 (patch)
tree30a797cb780c2188113df0f636c07055dd3b610f
parentbc80d9cfd8b88a3438840d4d4f3492155812811e (diff)
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
-rw-r--r--django/newforms/formsets.py2
1 files changed, 1 insertions, 1 deletions
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 = []