On Thu, Jan 17, 2008 at 08:25:05PM -0600, Raphael Geissert wrote:
> # do not process the cache file
> - if file == 'index.cache.bz2': continue
> + if file.split('/')[file.count('/')] == 'index.cache.bz2': continue
Uh,
file.split('/')[-1] == 'index.chache.bz2'
would probably be better.
Cheers,
aj