Skip to content
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
No ignorar archivos que tienen sólo fuzzy
Actualizo un import que no funciona con la version actual de potodo.
  • Loading branch information
aandrea committed Sep 1, 2023
commit 4c0cd6fe9f2c098c562bed4538cd3c7f28b6e757
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