From 9df32bd899463418c90a1b377851868d1e4dbd87 Mon Sep 17 00:00:00 2001 From: shigapov <57352291+shigapov@users.noreply.github.com> Date: Tue, 13 Sep 2022 08:25:45 +0200 Subject: [PATCH] fix typo --- blatt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blatt/cli.py b/blatt/cli.py index bcbafe2..e9973ec 100644 --- a/blatt/cli.py +++ b/blatt/cli.py @@ -23,7 +23,7 @@ def cli(): help="If linebreak==False, it removes hyphens at the end of lines and merges the lines without line " "breaks. Otherwise, it merges the lines using line breaks.") @click.argument('page_folder', type=click.Path(exists=True)) -@click.argument('text_folder', type=click.Path()) +@click.argument('txt_folder', type=click.Path()) def to_txt(page_folder, txt_folder, linebreak): """blatt to_txt: converts all PAGE XML files in PAGE_FOLDER to TXT files with/without hyphens in TEXT_FOLDER.""" file_paths = Path(page_folder).glob('*.xml')