Skip to content

Commit

Permalink
fix: python <3.10 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Jun 24, 2024
1 parent 994f70a commit 74e0f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/archiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _update_index(self, root_dir: Path, *, s3fs_parent_dir: str | None=None) ->

# Make sure all the sub_index directories exist on the disk
if old_subindexes := {sub_index for sub_index in current_sub_index if sub_index not in current_dirs}:
self.logger.warning(f'Sub index {', '.join(old_subindexes)} do not exist, removing them from the index.')
self.logger.warning(f'Sub index {", ".join(old_subindexes)} do not exist, removing them from the index.')
rewrite_index = True
current_sub_index -= old_subindexes

Expand Down

0 comments on commit 74e0f85

Please sign in to comment.