Skip to content

Commit

Permalink
Merge pull request #368 from empiriker/master
Browse files Browse the repository at this point in the history
Fix missing skip_analyze_templates argument in wiktwords.py
  • Loading branch information
xxyzz authored Oct 18, 2023
2 parents 2a54f0c + a38a5f7 commit 734639a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/wiktextract/wiktwords.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,10 @@ def main():

if args.override is not None and args.path is None:
analyze_and_overwrite_pages(
wxr.wtp, [Path(p) for p in args.override], skip_extract_dump
wxr.wtp,
[Path(p) for p in args.override],
skip_extract_dump,
wxr.config.analyze_templates,
)

if args.page:
Expand Down

0 comments on commit 734639a

Please sign in to comment.