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

Fix small error to prevent recursion on tsv2page
master
Kai Labusch 1 month ago committed by GitHub
commit 24ecc16b2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save