22 Sep
2011
22 Sep
'11
9:05 a.m.
On Thu, Sep 22, 2011 at 12:59:43PM +0400, Ruslan Mahmatkhanov wrote:
Ok, this change works for me.
It should be applied against src/App/CacheManager.py. Would you mind to commit it?
REQUEST.RESPONSE.setHeader('Content-Type', 'text/plain') - return '\n'.join('%6d %s'%(count, name) for count, name in detail) + return '\n'.join('%s %6d'%(count, name) for count, name in detail)
This doesn't look right! So count is %s, and name is %d? Perhaps their order in detail changed? Albertas