Skip to content

Commit

Permalink
added latin-1 to decodde method line 460 of openfast.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rclarke17 committed Feb 23, 2024
1 parent c0bb76a commit 956c264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pCrunch/io/openfast.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def parse_header(self, f):

for _line in f:

line = _line.replace(b"\xb7", b"-").decode().strip()
line = _line.replace(b"\xb7", b"-").decode('latin-1').strip()
data.append(line)

if _start:
Expand Down

0 comments on commit 956c264

Please sign in to comment.