Skip to content

Commit

Permalink
fix arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Nov 14, 2023
1 parent 7be4973 commit 7d4c526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tufup/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def purge(self) -> None:
for path in self.dir_to_purge.iterdir():
relative_path = path.relative_to(self.dir_to_purge)
if str(relative_path) in manifest:
remove_path(path=path, override_readonly=True)
remove_path(path=path, remove_readonly=True)
else:
logger.warning(f'{path} remains: not in {self._filename}')
logger.info(f'directory purged: {self.dir_to_purge}')
Expand Down

0 comments on commit 7d4c526

Please sign in to comment.