diff options
| author | Tim Graham <timograham@gmail.com> | 2013-08-10 18:08:05 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-10 18:08:27 -0400 |
| commit | 43f12f368b141444b47aacea2635afbc28ed46d0 (patch) | |
| tree | 41f5900b9c1bb69bd5d8b83605a3f5c82ad94d94 /docs | |
| parent | 2cd1439c06b2834942545a5679fa50691a736d50 (diff) | |
[1.6.x] Fixed #20890 -- Added missing import in class-based view docs.
Thanks André Augusto.
Backport of ab680725bf from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/class-based-views/intro.txt | 1 |
1 files changed, 1 insertions, 0 deletions
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 |
