Skip to content

Commit

Permalink
Fix typo in run_post_install_actions
Browse files Browse the repository at this point in the history
A function call to expose_resources_globally with a duplicate argument.
  • Loading branch information
peterkuma committed Aug 24, 2023
1 parent 8ca1470 commit 0024793
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pipx/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,7 @@ def run_post_install_actions(
suffix=package_metadata.suffix,
)
for _, man_paths in package_metadata.man_paths_of_dependencies.items():
expose_resources_globally(
"man", local_man_dir, local_man_dir, man_paths, force=force
)
expose_resources_globally("man", local_man_dir, man_paths, force=force)

package_summary, _ = get_venv_summary(
venv_dir, package_name=package_name, new_install=True
Expand Down

0 comments on commit 0024793

Please sign in to comment.