From 80791aced897e5ee416e7db1a872e44e48bcf4a9 Mon Sep 17 00:00:00 2001 From: pwnfan Date: Tue, 23 May 2023 21:56:24 +0800 Subject: [PATCH] code.misc>modify.misc: fix word spelling of help msg in convert sub command --- tagmark/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tagmark/cli.py b/tagmark/cli.py index 6a9e14f..cd1afa4 100644 --- a/tagmark/cli.py +++ b/tagmark/cli.py @@ -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", @@ -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(), )