Fix a typo.

This commit is contained in:
Eric S. Raymond 2007-06-14 20:31:12 +00:00
parent 191f0e1463
commit ef43328e0c

View file

@ -73,7 +73,7 @@ def convertor(linefilter, filelist):
for filename in filelist:
infp = open(filename, "r")
outfp = open(filename + ".out", "w")
linefilter(infp, outfp)
linefilter(filename, infp, outfp)
infp.close()
outfp.close()
os.remove(filename)