This commit is contained in:
Egor Matveev 2022-02-06 23:45:02 +03:00
parent 617eb43106
commit f7c3f95314

View File

@ -97,7 +97,7 @@ class BaseTester:
) as fs: ) as fs:
bts = get_bytes(file.fs_id) bts = get_bytes(file.fs_id)
if file.filename == 'checker.sh': if file.filename == 'checker.sh':
bts = bts.replace(b"\r\n", b"\r") bts = bts.replace(b"\r\n", b"\n")
else: else:
bts = bts.replace(b"\r\n", b"\n") bts = bts.replace(b"\r\n", b"\n")
fs.write(bts) fs.write(bts)