summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2011-01-08 14:55:19 +0000
committerAndrew Godwin <andrew@aeracode.org>2011-01-08 14:55:19 +0000
commit1ad644c0f052a60903ed0b94defe0c04fca47d06 (patch)
tree4f1224bd262824bdfe7cc2e35bf88603e9090985
parent4a9ecdb1480fae8f072368843696d635ce1c6c6d (diff)
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
-rw-r--r--django/views/decorators/gzip.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/django/views/decorators/gzip.py b/django/views/decorators/gzip.py
index dc6edad049..f5b009db4a 100644
--- a/django/views/decorators/gzip.py
+++ b/django/views/decorators/gzip.py
@@ -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."