Commit b5ebf7e9 authored by Hanno Schlichting's avatar Hanno Schlichting

Merge c126512 from 2.13 branch

parent 30b54fd5
...@@ -97,10 +97,10 @@ class CacheManager: ...@@ -97,10 +97,10 @@ class CacheManager:
if REQUEST is not None: if REQUEST is not None:
# format as text # format as text
REQUEST.RESPONSE.setHeader('Content-Type', 'text/plain') REQUEST.RESPONSE.setHeader('Content-Type', 'text/plain')
return '\n'.join('%6d %s'%(count, name) for count, name in detail) return '\n'.join(
else: ['%6d %s' % (count, name) for name, count in detail])
# raw # raw
return detail return detail
def cache_extreme_detail(self, REQUEST=None): def cache_extreme_detail(self, REQUEST=None):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment