From 43f12f368b141444b47aacea2635afbc28ed46d0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 10 Aug 2013 18:08:05 -0400 Subject: [PATCH] [1.6.x] 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. Backport of ab680725bf from master --- 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