Continue processing entries even after one is filtered out
Thanks: Harry Fuecks
This commit is contained in:
parent
20b0ba62ce
commit
ce86fb15e6
2
THANKS
2
THANKS
@ -5,7 +5,7 @@ Jacques Distler - Template patches
|
|||||||
Michael Koziarski - HTTP Auth fix
|
Michael Koziarski - HTTP Auth fix
|
||||||
Brian Ewins - Win32 / Portalocker
|
Brian Ewins - Win32 / Portalocker
|
||||||
Joe Gregorio - Invoke same version of Python for filters
|
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
|
Eric van der Vlist - Filters to add language, category information
|
||||||
|
|
||||||
This codebase represents a radical refactoring of Planet 2.0, which lists
|
This codebase represents a radical refactoring of Planet 2.0, which lists
|
||||||
|
@ -241,7 +241,8 @@ def spiderFeed(feed):
|
|||||||
xdoc.unlink()
|
xdoc.unlink()
|
||||||
for filter in config.filters(feed):
|
for filter in config.filters(feed):
|
||||||
output = shell.run(filter, output, mode="filter")
|
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 out and timestamp the results
|
||||||
write(output, cache_file)
|
write(output, cache_file)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user