From c0882fefcaca82e25318397bf85ae43dfed90775 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sun, 30 Mar 2014 20:30:07 -0300 Subject: [PATCH] [1.6.x] Corrected an import in a model form docs example. 422f5d9a2c from master. --- docs/topics/forms/modelforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index f513c44854e..fd12a919ba2 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -534,7 +534,7 @@ field, you could do the following:: If you want to specify a field's validators, you can do so by defining the field declaratively and setting its ``validators`` parameter:: - from django.forms import ModelForm, DateField + from django.forms import ModelForm, CharField from myapp.models import Article class ArticleForm(ModelForm):