From ab680725bfb2f0d79cff26331b30a3d583c55a80 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 10 Aug 2013 18:08:05 -0400 Subject: [PATCH] Fixed #20890 -- Added missing import in class-based view docs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks André Augusto. --- docs/topics/class-based-views/intro.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt index a65b887921..5986ff2ea7 100644 --- a/docs/topics/class-based-views/intro.txt +++ b/docs/topics/class-based-views/intro.txt @@ -198,6 +198,7 @@ A similar class-based view might look like:: from django.http import HttpResponseRedirect from django.shortcuts import render + from django.views.generic.base import View from .forms import MyForm