Fixed #14929 -- Move gzip_page docstring to the right place. Thanks adamv.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15161 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4a9ecdb148
commit
1ad644c0f0
|
@ -1,6 +1,5 @@
|
|||
"Decorator for views that gzips pages if the client supports it."
|
||||
|
||||
from django.utils.decorators import decorator_from_middleware
|
||||
from django.middleware.gzip import GZipMiddleware
|
||||
|
||||
gzip_page = decorator_from_middleware(GZipMiddleware)
|
||||
gzip_page.__doc__ = "Decorator for views that gzips pages if the client supports it."
|
||||
|
|
Loading…
Reference in New Issue