[1.2.X] Fixed #14929 -- Move gzip_page docstring to the right place. Thanks adamv.

Backport of [15161] from trunk

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15162 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Andrew Godwin 2011-01-08 14:56:02 +00:00
parent 34d306c71c
commit d065e7eed2

View File

@ -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."