cache.py:167:
for id, value in self.expiredCache:
but self.expiredCache is a dictionary. The line should be
for id, value in self.expiredCache.items():
or
for id in self.expiredCache:
value = self.expiredCache[id]
Oleg.
--
Oleg Broytmann http://phd.pp.ru/ ph...@ph...
Programmers don't die, they just GOSUB without RETURN.
|