diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-08-12 14:14:15 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-08-12 14:14:15 +0000 |
| commit | bce890ace4a97ab7a7a9b918f1452c6592d9b08e (patch) | |
| tree | bda6cf9653f58e6f77d30a8a26daf8ebe77772ac /django/middleware/gzip.py | |
| parent | 4a993fab18892596242a0b22c8fbd6c3ae2dde57 (diff) | |
Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/middleware/gzip.py')
| -rw-r--r-- | django/middleware/gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/middleware/gzip.py b/django/middleware/gzip.py index 47f75aa416..8e88a8c318 100644 --- a/django/middleware/gzip.py +++ b/django/middleware/gzip.py @@ -22,7 +22,7 @@ class GZipMiddleware(object): if response.has_header('Content-Encoding'): return response - # MSIE have issues with gzipped respones of various content types. + # MSIE have issues with gzipped response of various content types. if "msie" in request.META.get('HTTP_USER_AGENT', '').lower(): ctype = response.get('Content-Type', '').lower() if not ctype.startswith("text/") or "javascript" in ctype: |
