From: Christian Heimes Date: Wed, 2 Jan 2008 18:28:32 +0000 (+0000) Subject: Made vs9to8 Unix compatible X-Git-Tag: v2.6a1~782 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fed3ebc0001136bd63e951282233eda5b56acb33;p=python Made vs9to8 Unix compatible --- diff --git a/PCbuild/vs9to8.py b/PCbuild/vs9to8.py index 0669cfb9b8..b31ed6137d 100644 --- a/PCbuild/vs9to8.py +++ b/PCbuild/vs9to8.py @@ -11,7 +11,7 @@ def vs9to8(src, dest): destname = os.path.normpath(os.path.join(dest, name)) print("%s -> %s" % (filename, destname)) - with open(filename, 'r') as fin: + with open(filename, 'rU') as fin: lines = fin.read() lines = lines.replace('Version="9,00"', 'Version="8.00"') lines = lines.replace('Version="9.00"', 'Version="8.00"') @@ -22,8 +22,9 @@ def vs9to8(src, dest): lines = lines.replace('..\\', '..\\..\\') lines = lines.replace('..\\..\\..\\..\\', '..\\..\\..\\') - with open(destname, 'w') as fout: + with open(destname, 'wb') as fout: + lines = lines.replace("\n", "\r\n") fout.write(lines) if __name__ == "__main__": - vs9to8(src=".", dest="..\PC\VS8.0") + vs9to8(src=".", dest="../PC/VS8.0")