summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-11-01 18:50:32 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-11-01 18:50:32 +0000
commitca3dbaacbb764739e3c8f5ed3a1df38d34dc4311 (patch)
tree72908fb40a04f3fc670d5bed4cbbc146fc334ff8 /django
parent9480908bfa9783cd0868fcca416ed0db4c656792 (diff)
i18n: removed debugging leftovers (thx. rjwittams)
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@1043 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-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 = {}