Fix a last use of file() that should be open().
diff --git a/Tools/scripts/combinerefs.py b/Tools/scripts/combinerefs.py
index 34ce860..68704dd 100644
--- a/Tools/scripts/combinerefs.py
+++ b/Tools/scripts/combinerefs.py
@@ -86,7 +86,8 @@
             break
 
 def combine(fname):
-    f = file(fname)
+    f = open(fname)
+
     fi = iter(f)
 
     for line in read(fi, re.compile(r'^Remaining objects:$'), False):