Commit b5ebf7e9 authored by Hanno Schlichting's avatar Hanno Schlichting

Merge c126512 from 2.13 branch

parent 30b54fd5
......@@ -97,10 +97,10 @@ class CacheManager:
if REQUEST is not None:
# format as text
REQUEST.RESPONSE.setHeader('Content-Type', 'text/plain')
return '\n'.join('%6d %s'%(count, name) for count, name in detail)
else:
# raw
return detail
return '\n'.join(
['%6d %s' % (count, name) for name, count in detail])
# raw
return detail
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