mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
95bcff9924
fixes bug #10838
17 lines
391 B
Python
17 lines
391 B
Python
#! /usr/bin/env python
|
|
|
|
###############
|
|
import sys
|
|
|
|
for fname in sys.argv[1:]:
|
|
infile = open( fname, "rb" )
|
|
instr = infile.read()
|
|
infile.close()
|
|
outstr = instr.replace( b"\r\n", b"\n" ).replace( b"\r", b"\n" ).replace( b"\n", b"\r\n" )
|
|
|
|
if len(outstr) == len(instr):
|
|
continue
|
|
|
|
outfile = open( fname , "wb" )
|
|
outfile.write( outstr )
|
|
outfile.close() |