diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 8061f71e15..eb5e61712c 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -289,7 +289,7 @@ def _doPyp(infileName): if infileName == '-': fd = sys.stdin else: - fd = file(infileName) + fd = open(infileName) inLines = fd.readlines() if fd != sys.stdin: fd.close() @@ -310,7 +310,7 @@ def _doPyp(infileName): def include_processor(task): infileName = task.inputs[0].srcpath() outfileName = os.path.join(out, task.outputs[0].bldpath()) - fdOut = file (outfileName, "w") + fdOut = open (outfileName, "w") fdOut.write (_doPyp(infileName)) fdOut.close () diff --git a/waf b/waf index 72d68665cc..182b4f8428 100755 Binary files a/waf and b/waf differ