summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-10-30 22:57:46 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-10-30 22:57:46 +0000
commit9a30ed5cd5e5a3c8a3b80b7b4d698533aa9cab0d (patch)
treef12ae676d4ff000c49bb334c52efc1626d1bfc38 /docs
parentb237537e001493acd9fdf34576c2e0b13dfacd43 (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/form_preview.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/form_preview.txt b/docs/form_preview.txt
index 4be7b07a74..e6f9b05f25 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):