From 772e6d1a424b1d47d794a6da769b7cb28753692a Mon Sep 17 00:00:00 2001 From: r0man-ist <96392831+r0man-ist@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:08:41 +0200 Subject: [PATCH] Fix small error to prevent recursion on tsv2page --- qurator/tsvtools/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qurator/tsvtools/cli.py b/qurator/tsvtools/cli.py index f1573f2..c87490d 100644 --- a/qurator/tsvtools/cli.py +++ b/qurator/tsvtools/cli.py @@ -405,7 +405,7 @@ def tsv2page(output_filename, keep_words, page_file, tsv_file): @click.argument('page-file') @click.argument('tsv-file') def tsv2page_cli(output_filename, keep_words, page_file, tsv_file): - return tsv2page_cli(output_filename, keep_words, page_file, tsv_file) + return tsv2page(output_filename, keep_words, page_file, tsv_file) @click.command()