mirror of
https://github.com/qurator-spk/page2tsv.git
synced 2025-07-01 22:29:55 +02:00
Fix small error to prevent recursion on tsv2page
This commit is contained in:
parent
06c8b382db
commit
772e6d1a42
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ def tsv2page(output_filename, keep_words, page_file, tsv_file):
|
||||||
@click.argument('page-file')
|
@click.argument('page-file')
|
||||||
@click.argument('tsv-file')
|
@click.argument('tsv-file')
|
||||||
def tsv2page_cli(output_filename, keep_words, page_file, 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()
|
@click.command()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue