From: Nathan Rajlich Date: Wed, 11 Apr 2012 18:16:11 +0000 (-0700) Subject: configure: don't use "with" for Python 2.5 and older X-Git-Tag: v0.7.8~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdeeabba784f5581d630589fb9667bdab237b5fb;p=platform%2Fupstream%2Fnodejs.git configure: don't use "with" for Python 2.5 and older --- diff --git a/configure b/configure index 1a94251..ef34cf8 100755 --- a/configure +++ b/configure @@ -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))