Corrected a couple of typos in docstrings of methods in BaseFormSet.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8630 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Brian Rosner 2008-08-27 15:39:00 +00:00
parent 4848d4cbe6
commit d441a758de
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ class BaseFormSet(StrAndUnicode):
def _get_deleted_forms(self): def _get_deleted_forms(self):
""" """
Returns a list of forms that have been marked for deletion. Raises an Returns a list of forms that have been marked for deletion. Raises an
AttributeError is deletion is not allowed. AttributeError if deletion is not allowed.
""" """
if not self.is_valid() or not self.can_delete: if not self.is_valid() or not self.can_delete:
raise AttributeError("'%s' object has no attribute 'deleted_forms'" % self.__class__.__name__) raise AttributeError("'%s' object has no attribute 'deleted_forms'" % self.__class__.__name__)
@ -140,7 +140,7 @@ class BaseFormSet(StrAndUnicode):
def _get_ordered_forms(self): def _get_ordered_forms(self):
""" """
Returns a list of form in the order specified by the incoming data. Returns a list of form in the order specified by the incoming data.
Raises an AttributeError is deletion is not allowed. Raises an AttributeError if deletion is not allowed.
""" """
if not self.is_valid() or not self.can_order: if not self.is_valid() or not self.can_order:
raise AttributeError("'%s' object has no attribute 'ordered_forms'" % self.__class__.__name__) raise AttributeError("'%s' object has no attribute 'ordered_forms'" % self.__class__.__name__)