Continue processing entries even after one is filtered out

Thanks: Harry Fuecks
This commit is contained in:
Sam Ruby 2006-10-18 10:28:17 -04:00
parent 20b0ba62ce
commit ce86fb15e6
2 changed files with 3 additions and 2 deletions

2
THANKS
View File

@ -5,7 +5,7 @@ Jacques Distler - Template patches
Michael Koziarski - HTTP Auth fix
Brian Ewins - Win32 / Portalocker
Joe Gregorio - Invoke same version of Python for filters
Harry Fuecks - Pipe characters in file names
Harry Fuecks - Pipe characters in file names, filter bug
Eric van der Vlist - Filters to add language, category information
This codebase represents a radical refactoring of Planet 2.0, which lists

View File

@ -241,7 +241,8 @@ def spiderFeed(feed):
xdoc.unlink()
for filter in config.filters(feed):
output = shell.run(filter, output, mode="filter")
if not output: return
if not output: break
if not output: continue
# write out and timestamp the results
write(output, cache_file)