From 9a30ed5cd5e5a3c8a3b80b7b4d698533aa9cab0d Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Tue, 30 Oct 2007 22:57:46 +0000 Subject: [PATCH] Fixed #5834 -- Fixed import in `formtools` documentation, thanks telenieko. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6631 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/form_preview.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/form_preview.txt b/docs/form_preview.txt index 4be7b07a74373..e6f9b05f25e2f 100644 --- a/docs/form_preview.txt +++ b/docs/form_preview.txt @@ -45,7 +45,7 @@ How to use ``FormPreview`` 2. Create a ``FormPreview`` subclass that overrides the ``done()`` method:: - from django.contrib.formtools import FormPreview + from django.contrib.formtools.preview import FormPreview from myapp.models import SomeModel class SomeModelFormPreview(FormPreview):