summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/wscript4
-rwxr-xr-xwafbin89515 -> 89479 bytes
2 files changed, 2 insertions, 2 deletions
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
--- a/waf
+++ b/waf
Binary files differ