Django

Code

Changeset 6053

Show
Ignore:
Timestamp:
09/06/07 21:39:18 (1 year ago)
Author:
jkocherhans
Message:

Fixed typo in formsets. Thanks Simon Litchfield.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/newforms-admin/django/newforms/formsets.py

    r6052 r6053  
    7272        """Return a list of all the change forms in this ``FormSet``.""" 
    7373        FormClass = self.form_class 
    74         if not hasattr(self, '_add_forms'): 
     74        if not hasattr(self, '_change_forms'): 
    7575            change_forms = [] 
    7676            for i in range(0, self.change_form_count):