From ca3dbaacbb764739e3c8f5ed3a1df38d34dc4311 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 1 Nov 2005 18:50:32 +0000 Subject: [PATCH] i18n: removed debugging leftovers (thx. rjwittams) git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@1043 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/cache.py | 2 -- 1 file changed, 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 = {}