10000 No ignorar archivos que tienen sólo entradas fuzzy by aandrea · Pull Request #2377 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

No ignorar archivos que tienen sólo entradas fuzzy #2377

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 communi 8000 ty.

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 1 commit into from
Oct 9, 2023
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions scripts/create_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path

from github import Github
from potodo._po_file import PoFileStats
from potodo.potodo import PoFileStats

if len(sys.argv) != 2:
print('Specify PO filename')
Expand All @@ -32,7 +32,7 @@
if answer != 'y':
sys.exit(1)

if any([
if pofile.fuzzy == 0 and any([
pofile.translated_nb == pofile.po_file_size,
pofile.untranslated_nb == 0,
]):
Expand Down
0