summaryrefslogtreecommitdiff
path: root/django/utils/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/cache.py')
-rw-r--r--django/utils/cache.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/utils/cache.py b/django/utils/cache.py
index 631ea8f08d..ed6e3f11ea 100644
--- a/django/utils/cache.py
+++ b/django/utils/cache.py
@@ -49,9 +49,7 @@ def patch_cache_control(response, **kwargs):
return t[0] + '=' + str(t[1])
if response.has_header('Cache-Control'):
- print response['Cache-Control']
cc = cc_delim_re.split(response['Cache-Control'])
- print cc
cc = dict([dictitem(el) for el in cc])
else:
cc = {}