8000 script to search for and complete probable 'index entries' by cacrespo · Pull Request #2706 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

script to search for and complete probable 'index entries' #2706

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Dec 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wrapwidth=79
  • Loading branch information
cacrespo committed Dec 11, 2023
commit 26bb8ba83b114dd77c5818b281a7bed9e2fbfaee
2 changes: 1 addition & 1 deletion scripts/complete_index.py
5BEA
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def complete_index(po_files=None):
for po_file_path in po_files:

try:
po_file = polib.pofile(po_file_path)
po_file = polib.pofile(po_file_path, wrapwidth=79)

# Ask to complete entries out of order with original text
needs_save = False
Expand Down
0