Warning message about unfound file was missing trailing \n.

This commit is contained in:
Guido van Rossum 2001-12-06 03:28:17 +00:00
parent e51c3f5ecb
commit 436fd75b4a

View file

@ -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()