diff options
| author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-11-22 17:23:12 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-25 19:16:19 -0500 |
| commit | 1c7a83ee8e3da431d9d21dae42da8f1f89973f7c (patch) | |
| tree | 3187725b410e83441ab4dc648dd72176eb1728f2 /django/forms/formsets.py | |
| parent | 7a0a3a64a827480c737060bcd5af9af25c3b3c15 (diff) | |
Fixed #21489 -- Make formsets directly importable from django.forms.
Diffstat (limited to 'django/forms/formsets.py')
| -rw-r--r-- | django/forms/formsets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/formsets.py b/django/forms/formsets.py index 625f597117..3759d3381d 100644 --- a/django/forms/formsets.py +++ b/django/forms/formsets.py @@ -13,7 +13,7 @@ from django.utils.six.moves import xrange from django.utils.translation import ungettext, ugettext as _ -__all__ = ('BaseFormSet', 'all_valid') +__all__ = ('BaseFormSet', 'formset_factory', 'all_valid') # special field names TOTAL_FORM_COUNT = 'TOTAL_FORMS' |
