Skip to content

Commit

Permalink
Fix program name in generated manual page (#1049)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrobst authored Aug 27, 2023
1 parent d04b42c commit ac65e1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [docs] Add subsection to make README easier to read
- Add `pipx install --preinstall` to support preinstalling build requirements
- Pass `--no-input` to pip when output is not piped to parent stdout
- Fix program name in generated manual page

## 1.2.0

Expand Down
2 changes: 2 additions & 0 deletions scripts/generate_man.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-

import os.path
import sys
import textwrap

from build_manpages.manpage import Manpage # type: ignore
Expand All @@ -10,6 +11,7 @@


def main():
sys.argv[0] = "pipx"
parser = get_command_parser()
parser.man_short_description = parser.description.splitlines()[1]

Expand Down

0 comments on commit ac65e1d

Please sign in to comment.