Skip to content

Commit

Permalink
cli/version: fix possible double space
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Mar 2, 2023
1 parent 25fda69 commit e0e53ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pypdfium2/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_parser():
main_parser.add_argument(
"--version", "-v",
action = "version",
version = f"pypdfium2 {V_PYPDFIUM2} (libpdfium {V_LIBPDFIUM}, {V_BUILDNAME} {'v8' if V_PDFIUM_IS_V8 else ''} build)",
version = f"pypdfium2 {V_PYPDFIUM2} (libpdfium {V_LIBPDFIUM}, {V_BUILDNAME} {'V8' if V_PDFIUM_IS_V8 else 'default'} build)",
)
subparsers = main_parser.add_subparsers(dest="subcommand")

Expand Down

0 comments on commit e0e53ba

Please sign in to comment.