Skip to content

Commit

Permalink
Fix mistake in rmdir log message
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmess1221 committed Jul 26, 2021
1 parent b90579f commit a838053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipx/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def rmdir(path: Path, safe_rm: bool = True) -> None:
if path.is_dir():
if safe_rm:
logger.warning(
f"Failed to delete {path}. Will moving it to a temp folder to delete later."
f"Failed to delete {path}. Will move it to a temp folder to delete later."
)

path.rename(_get_trash_file(path))
Expand Down

0 comments on commit a838053

Please sign in to comment.