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