Skip to content

Commit

Permalink
W1202: Use lazy % formatting in logging functions
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Oct 6, 2023
1 parent 2fa36fa commit 9561971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hathizip/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def main(argv: Optional[List[str]] = None) -> None:
process.compress_folder(folder.path, dst=destination_path)
if args.remove:
shutil.rmtree(folder.path)
logger.info("Removing %s.",folder.path)
logger.info("Removing %s.", folder.path)


if __name__ == '__main__':
Expand Down

0 comments on commit 9561971

Please sign in to comment.