Stripped carriage return and added eol-style native prop.

This commit is contained in:
Christopher Dunn
2007-06-14 21:01:26 +00:00
parent f1a49467cf
commit f986423955
77 changed files with 1203 additions and 1203 deletions

View File

@@ -1,11 +1,11 @@
import glob
import os.path
for path in glob.glob( '*.json' ):
text = file(path,'rt').read()
target = os.path.splitext(path)[0] + '.expected'
if os.path.exists( target ):
print 'skipping:', target
else:
print 'creating:', target
file(target,'wt').write(text)
import glob
import os.path
for path in glob.glob( '*.json' ):
text = file(path,'rt').read()
target = os.path.splitext(path)[0] + '.expected'
if os.path.exists( target ):
print 'skipping:', target
else:
print 'creating:', target
file(target,'wt').write(text)