0
0
mirror of https://github.com/django/django.git synced 2024-11-30 07:06:18 +01:00

fixed minor typo #19703

This commit is contained in:
Simon Kerr 2013-01-30 19:48:05 +01:00
parent 47ddd6a408
commit 52533a64d5

View File

@ -32,12 +32,12 @@ def get_declared_fields(bases, attrs, with_base_fields=True):
""" """
Create a list of form field instances from the passed in 'attrs', plus any Create a list of form field instances from the passed in 'attrs', plus any
similar fields on the base classes (in 'bases'). This is used by both the similar fields on the base classes (in 'bases'). This is used by both the
Form and ModelForm metclasses. Form and ModelForm metaclasses.
If 'with_base_fields' is True, all fields from the bases are used. If 'with_base_fields' is True, all fields from the bases are used.
Otherwise, only fields in the 'declared_fields' attribute on the bases are Otherwise, only fields in the 'declared_fields' attribute on the bases are
used. The distinction is useful in ModelForm subclassing. used. The distinction is useful in ModelForm subclassing.
Also integrates any additional media definitions Also integrates any additional media definitions.
""" """
fields = [(field_name, attrs.pop(field_name)) for field_name, obj in list(six.iteritems(attrs)) if isinstance(obj, Field)] fields = [(field_name, attrs.pop(field_name)) for field_name, obj in list(six.iteritems(attrs)) if isinstance(obj, Field)]
fields.sort(key=lambda x: x[1].creation_counter) fields.sort(key=lambda x: x[1].creation_counter)