Skip to content

Commit 4c0cd6f

Browse files
committed
No ignorar archivos que tienen sólo fuzzy
Actualizo un import que no funciona con la version actual de potodo.
1 parent c6aff48 commit 4c0cd6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/create_issue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from pathlib import Path
77

88
from github import Github
9-
from potodo._po_file import PoFileStats
9+
from potodo.potodo import PoFileStats
1010

1111
if len(sys.argv) != 2:
1212
print('Specify PO filename')
@@ -32,7 +32,7 @@
3232
if answer != 'y':
3333
sys.exit(1)
3434

35-
if any([
35+
if pofile.fuzzy == 0 and any([
3636
pofile.translated_nb == pofile.po_file_size,
3737
pofile.untranslated_nb == 0,
3838
]):

0 commit comments

Comments
 (0)