Commit 4b280415 authored by Guido van Rossum's avatar Guido van Rossum

Fix a last use of file() that should be open().

parent da3673e9
......@@ -86,7 +86,8 @@ def read(fileiter, pat, whilematch):
break
def combine(fname):
f = file(fname)
f = open(fname)
fi = iter(f)
for line in read(fi, re.compile(r'^Remaining objects:$'), False):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment