mirror of https://github.com/nodejs/node.git
configure: don't use "with" for Python 2.5 and older
parent
e0660740d9
commit
fdeeabba78
|
@ -342,8 +342,8 @@ pprint.pprint(output, indent=2)
|
|||
def write(filename, data):
|
||||
filename = os.path.join(root_dir, filename)
|
||||
print "creating ", filename
|
||||
with open(filename, 'w+') as f:
|
||||
f.write(data)
|
||||
f = open(filename, 'w+')
|
||||
f.write(data)
|
||||
|
||||
write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
|
||||
pprint.pformat(output, indent=2))
|
||||
|
|
Loading…
Reference in New Issue