diff options
author | Дилян Палаузов <Dilyan.Palauzov@db.com> | 2018-01-12 09:05:16 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-01-12 12:44:50 -0500 |
commit | a38ae914d89809aed6d79337b74a8b31b6d3849a (patch) | |
tree | 42a8465e37fc02b70d8d3f876d23947acb1a2455 /django/utils/cache.py | |
parent | 4bcec02368b7e5466f64dc17286689b16613c94b (diff) | |
download | django-a38ae914d89809aed6d79337b74a8b31b6d3849a.tar.gz |
Fixed #28996 -- Simplified some boolean constructs and removed trivial continue statements.
Diffstat (limited to 'django/utils/cache.py')
-rw-r--r-- | django/utils/cache.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/django/utils/cache.py b/django/utils/cache.py index cb49806ee9..86234f7aed 100644 --- a/django/utils/cache.py +++ b/django/utils/cache.py @@ -376,9 +376,8 @@ def learn_cache_key(request, response, cache_timeout=None, key_prefix=None, cach headerlist = [] for header in cc_delim_re.split(response['Vary']): header = header.upper().replace('-', '_') - if header == 'ACCEPT_LANGUAGE' and is_accept_language_redundant: - continue - headerlist.append('HTTP_' + header) + if header != 'ACCEPT_LANGUAGE' or not is_accept_language_redundant: + headerlist.append('HTTP_' + header) headerlist.sort() cache.set(cache_key, headerlist, cache_timeout) return _generate_cache_key(request, request.method, headerlist, key_prefix) |