Closed ShusakuASANO closed 4 years ago
I will check the impact of that tonight on some of the European encodings and if there is no problem, then I will integrate the situation.
@ShusakuASANO Please review if the attached commit solves the bug on your system ;)
@ShusakuASANO Please review if the attached commit solves the bug on your system ;)
Thank you, Tarskin! I confirmed that the new version works in my workspace:)
Hi,
I found that my workspace (Python3.7, anaconda distribution, windows10 64bit) have a problem in opening example chromatogram. The issue would be the default text encoding (CP932) in my windows workspace. Modifying the file_parser.py line 47 from with Path(master.filename).open() as fr: to __ with Path(master.filename).open(encoding="utf-8_sig") as fr: __ solved my problem.
If this modification makes no problem in other workspaces, could you consider setting this as default code? Thank you,