Issue #499 - Use all warc_directories found when no specific collection has been passed.

This commit is contained in:
Chris Routh 2025-11-06 11:49:58 -08:00
parent 4595d2a302
commit 57a88434e2

View file

@ -1079,12 +1079,11 @@ def run(raw_args):
)
elif len(warc_dirs) > 1:
logger.info(
"Found many WARC files directories, only most recently modified one"
" will be used"
"Found many WARC files directories, combining pages from all of them"
)
for directory in warc_dirs:
logger.info(f"- {directory}")
warc_files = [warc_dirs[-1]]
warc_files = warc_dirs
logger.info("")
logger.info("----------")