changed encoding to cp1252 for report files
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user