1
0
Fork 0
mirror of https://github.com/putnam/binmerge.git synced 2025-04-19 08:28:06 +02:00

forced cuesheet line endings to windows crlf to match redump

This commit is contained in:
CGarz 2019-01-11 23:41:54 +00:00
parent e97516cc20
commit ae9f944094

View file

@ -184,7 +184,7 @@ def main():
print("Output dir does not exist")
return False
with open(os.path.join(outdir, args.new_name+'.cue'), 'w') as f:
with open(os.path.join(outdir, args.new_name+'.cue'), 'w', newline='\r\n') as f:
f.write(cuesheet)
print("Wrote %s" % args.new_name+'.cue')