Browse Source

Fixed #20890 -- Added missing import in class-based view docs.

Thanks André Augusto.
Tim Graham 11 years ago
parent
commit
ab680725bf
1 changed files with 1 additions and 0 deletions
  1. 1 0
      docs/topics/class-based-views/intro.txt

+ 1 - 0
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