1
0
Fork 0
mirror of https://github.com/qurator-spk/page2tsv.git synced 2025-07-04 07:39:53 +02:00

Merge pull request #17 from r0man-ist/patch-1

Fix small error to prevent recursion on tsv2page
This commit is contained in:
Kai Labusch 2024-09-10 15:47:56 +02:00 committed by GitHub
commit 24ecc16b2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()