Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piconti committed May 29, 2024
1 parent cfe3aa4 commit e9961c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions impresso_commons/versioning/compute_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,11 @@ def create_manifest(
# processing newspapers one at a time
for np_title, np_s3_files in s3_files.items():

logger.info("---------- %s ----------", np_title)
logger.debug(
"The list of files selected for %s is: %s",
np_title,
list(np_s3_files.values()),
np_s3_files,
)
# load the selected files in dask bags
processed_files = db.read_text(
Expand Down Expand Up @@ -281,7 +282,6 @@ def create_manifest(
manifest.add_by_title_year(title, year, stats)

logger.info("%s - Finished adding stats, going to the next title...", np_title)
logger.info("-" * 10)

logger.info("Finalizing the manifest, and computing the result...")
# Add the note to the manifest
Expand Down

0 comments on commit e9961c8

Please sign in to comment.