From: Oleg B. <ph...@ph...> - 2004-11-17 17:34:00
|
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. |