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 = {}