Skip to content

Commit 6655345

Browse files
committed
Fix *_ee.tra regex
1 parent 1cf40fe commit 6655345

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

msg2po/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def get_enc(lang_path: str = "", file_path: str = ""):
231231
if filename in UTF_FILENAMES:
232232
encoding = "utf-8"
233233

234-
utf_name = re.compile(".*_ee.tra$")
234+
utf_name = re.compile(".*_ee\.tra$")
235235
if utf_name.match(filename):
236236
encoding = "utf-8"
237237

0 commit comments

Comments
 (0)