changed encoding to cp1252 for report files

This commit is contained in:
2026-02-11 14:53:29 +05:30
parent d0dc66eacc
commit a9564cbbb9

View File

@@ -19,7 +19,7 @@ class ACHParser:
def parse(self):
"""Main parsing method."""
try:
with open(self.file_path, 'r', encoding='utf-8') as f:
with open(self.file_path, 'r', encoding="cp1252") as f:
content = f.read()
# Split by form feed to separate pages