Skip to content

Commit

Permalink
♻️ refactor(help): ensure program name is "shuku"
Browse files Browse the repository at this point in the history
Before, it showed the binary name (e.g. "shuku 2") in help output.
  • Loading branch information
welpo committed Dec 27, 2024
1 parent 9228963 commit 6fa632b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shuku/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def parse_arguments() -> argparse.Namespace:
"-V",
"--version",
action="version",
version=f"%(prog)s {VERSION}",
version=f"{PROGRAM_NAME} v{VERSION}",
help="Print version and exit.",
)
parser.add_argument(
Expand Down

0 comments on commit 6fa632b

Please sign in to comment.