From aad5e791ea424ed72f03cb6ba1bb12fc1ab9f54c Mon Sep 17 00:00:00 2001 From: James Bennett Date: Thu, 10 Apr 2008 04:05:37 +0000 Subject: [PATCH] Fixed #6982; added an import statement to example in docs/modelforms.txt for the ModelForm class git-svn-id: http://code.djangoproject.com/svn/django/trunk@7411 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modelforms.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/modelforms.txt b/docs/modelforms.txt index 554aeb7ea0..a76d797527 100644 --- a/docs/modelforms.txt +++ b/docs/modelforms.txt @@ -121,6 +121,7 @@ A full example Consider this set of models:: from django.db import models + from django.newforms import ModelForm TITLE_CHOICES = ( ('MR', 'Mr.'),