Commit d48732d3 authored by Guido van Rossum's avatar Guido van Rossum

Warning message about unfound file was missing trailing \n.

parent 8e8d08c5
......@@ -150,6 +150,7 @@ def process(fp, outfp, env = {}):
'\n# Included from %s\n' % filename)
process(inclfp, outfp, env)
else:
sys.stderr.write('Warning - could not find file %s' % filename)
sys.stderr.write('Warning - could not find file %s\n' %
filename)
main()
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