Fixed #22007 -- Fixed cbv docs - make imports consistent

Thanks to trac user kinjal.dixit for the report.
This commit is contained in:
Martin Matusiak 2014-02-22 13:39:33 +01:00 committed by Baptiste Mispelon
parent 926e18d7d1
commit d399731bf2
2 changed files with 11 additions and 3 deletions

View file

@ -30,6 +30,14 @@ Python style
* Use ``InitialCaps`` for class names (or for factory functions that
return classes).
* Use convenience imports whenever available. For example, do this::
from django.views.generic import View
Don't do this::
from django.views.generic.base import View
* In docstrings, use "action words" such as::
def foo():