From 46786b4193e04d398532bbfc3dcf63c03c1793cb Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Sat, 19 Jul 2008 01:22:26 +0000 Subject: Fixed #7741: django.newforms is now django.forms. This is obviously a backwards-incompatible change. There's a warning upon import of django.newforms itself, but deeper imports will raise errors. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7971 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/formsets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/regressiontests/forms/formsets.py') diff --git a/tests/regressiontests/forms/formsets.py b/tests/regressiontests/forms/formsets.py index dedc0a8e52..bbbd4cee5a 100644 --- a/tests/regressiontests/forms/formsets.py +++ b/tests/regressiontests/forms/formsets.py @@ -5,8 +5,8 @@ tests = """ FormSet allows us to use multiple instance of the same form on 1 page. For now, the best way to create a FormSet is by using the formset_factory function. ->>> from django.newforms import Form, CharField, IntegerField, ValidationError ->>> from django.newforms.formsets import formset_factory, BaseFormSet +>>> from django.forms import Form, CharField, IntegerField, ValidationError +>>> from django.forms.formsets import formset_factory, BaseFormSet >>> class Choice(Form): ... choice = CharField() -- cgit v1.3