diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2011-01-08 14:55:19 +0000 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2011-01-08 14:55:19 +0000 |
| commit | 1ad644c0f052a60903ed0b94defe0c04fca47d06 (patch) | |
| tree | 4f1224bd262824bdfe7cc2e35bf88603e9090985 | |
| parent | 4a9ecdb1480fae8f072368843696d635ce1c6c6d (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.py | 3 |
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." |
