Skip to content

Commit

Permalink
code.misc>modify.misc: fix word spelling of help msg in convert sub c…
Browse files Browse the repository at this point in the history
…ommand
  • Loading branch information
pwnfan committed May 23, 2023
1 parent 4438d16 commit 80791ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagmark/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def cli():
pass


@cli.command(help="covert other format of bookmarks into Tagmark format(json-lines)")
@cli.command(help="convert other bookmark formats into Tagmark format(json-lines)")
@click.option(
"-i",
"--input-file-path",
Expand Down Expand Up @@ -131,7 +131,7 @@ def convert(
)
__logger.info(
msg="new tagmark data file has been generated",
tagmark_data=output_file_path.absolute(),
tagmark_data=Path(output_file_path).absolute(),
)


Expand Down

0 comments on commit 80791ac

Please sign in to comment.